You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$query1 = mysql_query("UPDATE customer SET vehicleId = '" . $_GET['id'] . "' WHERE cusId LIKE '" . $_GET['cusId'] . "' ") or die(mysql_error());
$query2 = mysql_query("INSERT INTO hired (vehicleID , vehicle , type , seats) SELECT * FROM available where vehicleId = '" . $_GET['id'] . "'") or die(mysql_error());
$query3 = mysql_query("DELETE FROM available WHERE vehicleId ='" . $_GET['id'] . "' ") or die(mysql_error());
$query4 = mysql_query("UPDATE markers SET kms = '0' WHERE vehicleId = '1' ") or die("$query4-".mysql_error());