我正在使用 PHP 制作餐厅预订模块。
问题是我想让用户选择他们想来的时间和想去的时间。
在这两个时间之间,表格需要被占用,因此在这些时间之间该单元格中需要有一个名称。
我不知道如何完成这项工作。
这是我现有的代码:
$day="0".$_POST['day'];
$month="0".$_POST['month'];
$year=$_POST['year'];
$date=$year ."-". $month ."-". $day;
$table=$_POST['table'];
$name=$_POST['name'];
$fromtime=$_POST['fromtime'];
$untiltime=$_POST['untiltime'];
$tablenumber = $table;
$host="localhost";
$user="root";
$password="root";
$database="restaurant";
$connection = mysql_connect ($host, $user, $password)
or die ("could not connect with server");
$db = mysql_select_db ($database, $connection)
or die ("could not connect with db");
$query = mysql_query("SELECT * FROM tables WHERE table='$tablenumber' AND date = '$date'");
?>