33 lines
844 B
PHP
33 lines
844 B
PHP
<?php
|
|
include('includes/config/config.php');
|
|
include ('includes/functions.php');
|
|
include ('log_entry.php');
|
|
error_log ( "Start Printing Request Attributes" );
|
|
$requestStr="";
|
|
foreach ( $_REQUEST as $key => $value ) {
|
|
$requestStr.=$key . " : " . $value . "\n";
|
|
error_log ( $key . " : " . $value . "<br />\r\n" );
|
|
}
|
|
error_log ( "End Printing Request Attributes" );
|
|
save_log($requestStr,'Frequency Master','DELETE','delete_task_frequency.php');
|
|
|
|
// error_reporting(E_ERROR | E_PARSE);
|
|
|
|
$frequency_id=$_REQUEST['frequency_id'];
|
|
$query="";
|
|
if(!empty($frequency_id)){
|
|
$query="delete from task_frequency_master where frequency_id=$frequency_id" ;
|
|
|
|
if (!$result_bio_medical_waste = @mysqli_query($conn,$query)) {
|
|
|
|
exit(error_log(mysqli_error($conn)));
|
|
echo json_encode("FAILURE");
|
|
}else{
|
|
echo json_encode("SUCCESS");
|
|
}
|
|
|
|
}
|
|
|
|
|
|
?>
|