44 lines
1.5 KiB
PHP
44 lines
1.5 KiB
PHP
<?php
|
|
|
|
// Basic example of PHP script to handle with jQuery-Tabledit plug-in.
|
|
// Note that is just an example. Should take precautions such as filtering the input data.
|
|
|
|
//header('Content-Type: application/json');
|
|
|
|
include('db-connect.php');
|
|
|
|
$input = filter_input_array(INPUT_POST);
|
|
|
|
if ($input['action'] === 'edit') {
|
|
$sqlSelect = "SELECT * FROM trfstandards WHERE idtrfstandards='" . $input['id'] . "'";
|
|
$records = mysqli_query($con, $sqlSelect);
|
|
if (mysqli_num_rows($records) > 0) {
|
|
if (isset($input['idprotectioncategory'])) {
|
|
$q_idprotectioncategory = "idprotectioncategory='{$input['idprotectioncategory']}'";
|
|
} else {
|
|
$q_idprotectioncategory = "";
|
|
}
|
|
|
|
if (isset($input['iddpicategory'])) {
|
|
$q_iddpicategory = "iddpicategory='{$input['iddpicategory']}'";
|
|
} else {
|
|
$q_iddpicategory = "";
|
|
}
|
|
|
|
$sql = "UPDATE trfstandards SET {$q_idprotectioncategory} {$q_iddpicategory} WHERE idtrfstandards='" . $input['id'] . "'";
|
|
// mysqli_query($con,$sql);
|
|
} else {
|
|
$sql = "INSERT INTO trfstandards SET idtrfdetails ='" . $input['idtrfdetails'] . "', idstandards='" . $input['idstandards'] . "'" . " , idprotectioncategory='" . $input['idprotectioncategory'] . "'" . " , iddpicategory='" . $input['iddpicategory'] . "'";
|
|
}
|
|
|
|
mysqli_query($con, $sql);
|
|
}
|
|
if ($input['action'] === 'delete') {
|
|
mysqli_query($con, "DELETE FROM trfstandards WHERE idtrfstandards='" . $input['id'] . "'");
|
|
}
|
|
|
|
|
|
//mysqli_close($mysqli);
|
|
|
|
echo json_encode($input);
|