booking/order_finish.php

7 lines
175 B
PHP
Executable File

<?php
require 'fixed/config/go_con.php';
$order_id = $_POST['order_id'];
mysqli_query($db, "UPDATE o_drinks_orders SET order_status='Done' WHERE order_id='$order_id'; ");
?>