Skip to content
Snippets Groups Projects

OneHundred - 13515005 - Husnulzaki Wibisono Haryadi

Viewing commit baee827a
Show latest version
1 file
+ 9
5
Preferences
Compare changes
+ 9
5
@@ -7,14 +7,18 @@
$dest_city = $_POST['destination'];
$score = $_POST['rating'];
$comment = $_POST['comment'];
$date = date("Y-m-d")
$date = date_create() -> format("Y-m-d");
$insert_order_query = mysqli_query($con, "
INSERT INTO order (dest_city, pick_city, score, comment, driver_id, cust_id, date)
VALUES ($dest_city, $pick_city, $score, $comment, $driver_id, $cust_id)
") or die(mysqli_error());
INSERT INTO `order`(dest_city, pick_city, score, comment, driver_id, cust_id, date)
VALUES ('".$dest_city."', '".$pick_city."', '".$score."', '".$comment."', '".$driver_id."', '".$cust_id."', '".$date."')
") or die(mysqli_error($con));
header("Location : order.php")
header("Location : order.php");
if ($insert_order_query) {
} else {
echo 'wrong hole';
}
mysqli_close($con);
?>
\ No newline at end of file