Edit file File name : canceled_location.php Content :<?php date_default_timezone_set ('Africa/Ouagadougou'); include("query/connexion.php"); $con->set_charset("utf8"); if($_SERVER['REQUEST_METHOD'] =='POST'){ $id_location = $_POST['id_location']; $insertdata = mysqli_query($con, "delete from tj_location_vehicule where id=$id_location AND statut='in progress'"); if ($insertdata > 0) { $response['msg']['etat'] = 1; } else { $response['msg']['etat'] = 2; } echo json_encode($response); mysqli_close($con); } ?>Save