first commit
This commit is contained in:
32
backend/ride/overLay/deletArgumets.php
Executable file
32
backend/ride/overLay/deletArgumets.php
Executable file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
require_once __DIR__ . '/../../connect.php';
|
||||
|
||||
$driver_id = filterRequest('driver_id');
|
||||
|
||||
if (empty($driver_id)) {
|
||||
jsonError('Missing driver ID');
|
||||
exit;
|
||||
}
|
||||
|
||||
// SQL to DELETE the latest record for this driver
|
||||
// Still respects the 2-minute constraint
|
||||
$sql = "DELETE FROM write_argument_after_applied_from_background
|
||||
WHERE driver_id = :driver_id
|
||||
AND TIMESTAMPDIFF(MINUTE, time_of_order, NOW()) <= 20
|
||||
ORDER BY time_of_order DESC
|
||||
LIMIT 1";
|
||||
|
||||
$stmt = $con->prepare($sql);
|
||||
$stmt->bindParam(':driver_id', $driver_id);
|
||||
$stmt->execute();
|
||||
|
||||
// Check if any rows were actually deleted
|
||||
$count = $stmt->rowCount();
|
||||
|
||||
if ($count > 0) {
|
||||
jsonSuccess(null, "Record deleted successfully");
|
||||
} else {
|
||||
// Failure occurs if no record exists OR if the record is older than 2 minutes
|
||||
jsonError('No data found to delete (or time limit exceeded)');
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user