32 lines
882 B
PHP
Executable File
32 lines
882 B
PHP
Executable File
<?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)');
|
|
}
|
|
?>
|