ohctech_p8/delete_rulechart.php
Dushant Mali 899fb3e65a Upgrade 7 to 8
Upgrade 7 to 8
2024-11-02 18:03:13 +05:30

18 lines
386 B
PHP

<?php
include('includes/config/config.php');
$query="";
if(!empty($_REQUEST['flex_chart_id'])){
$query = " delete from rule_chart where chart_id = '".$_REQUEST['flex_chart_id']." ' ";
error_log("delete ".$query);
if (!$result = @mysqli_query($conn,$query)) {
die(mysqli_error($conn));
echo json_encode("FAILURE");
}else{
echo json_encode("SUCCESS");
}
}
?>