PHPを使ってレストラン予約モジュールを作っています。
問題は、ユーザーがいつ行きたいか、いつ行きたいかをユーザーに選択させたいということです。
これら 2 つの時間の間にテーブルを占有する必要があるため、それらの時間の間にそのセルに名前が必要です。
これを行う方法がわかりません。
これが私の既存のコードです:
$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'");
?>