ohctech_p8/del_work_area_param.php

19 lines
406 B
PHP
Raw Normal View History

2024-10-16 19:18:52 +05:30
<?php
include('includes/config/config.php');
$query="";
if(!empty($_REQUEST['item_id'])){
$query = " delete from work_area_hyg_parameter where id = '".$_REQUEST['item_id']." ' ";
// echo $query;
if (!$result = @mysqli_query($conn,$query)) {
2024-11-02 18:03:13 +05:30
die(mysqli_error($conn));
2024-10-16 19:18:52 +05:30
echo json_encode("FAILURE");
}else{
echo json_encode("SUCCESS");
}
}
?>