Update: 2026-06-28 23:37:42
This commit is contained in:
10
backend/reset_driver.php
Normal file
10
backend/reset_driver.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
require_once __DIR__ . '/core/bootstrap.php';
|
||||
try {
|
||||
$db = Database::get('main');
|
||||
$stmt = $db->prepare("UPDATE drivers SET status = 'pending_review' WHERE driverID = 'TEST202606252141546122'");
|
||||
$stmt->execute();
|
||||
echo "Driver status updated to pending_review successfully!";
|
||||
} catch (Exception $e) {
|
||||
echo "Error: " . $e->getMessage();
|
||||
}
|
||||
Reference in New Issue
Block a user