diff --git a/order/order_handler.php b/order/order_handler.php
index cd3f447c34acb8562a6793210c84e0d6c9adf76d..04c1720eff7a4c5830fe7f9b353d4a97240b078b 100644
--- a/order/order_handler.php
+++ b/order/order_handler.php
@@ -1,7 +1,20 @@
 <?php
 	include '../database/dbconnect.php';
 
-	if ($_SERVER["REQUEST_METHOD"] == "POST") {
-		
-	}
+	$cust_id = $_POST['customer'];
+	$driver_id = $_POST['selected_driver'];
+	$pick_city = $_POST['picking_point'];
+	$dest_city = $_POST['destination'];
+	$score = $_POST['rating'];
+	$comment = $_POST['comment'];
+	$date =  date("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());
+
+	header("Location : order.php")
+
+	mysqli_close($con);
 ?>
\ No newline at end of file