我正在使用 PHP 和 MySQL 开发一个系统。我的一个表单会提示用户填写两个文本框,即startTime
和endTime
。用户必须填写两个文本框,并在提交时将它们插入到我命名的表中,并将Slot
它们与以前的数据一起输出。
5:30
6:00
6:30
7:00
7:30
8:00
我该怎么做?引导我沿着你的答案。这是我的代码:
$i=0;
$sid=1;
$appointmentsdate=$_REQUEST['sTime'];
$appointmentedate=$_REQUEST['eTime'];
for($appointmentsdate;$appointmentsdate<$appointmentedate;$appointmentsdate++)
{
$arrayStartTime[$i]="{$appointmentsdate}:00";
$i++;
$arrayStartTime[$i]="{$appointmentsdate}:30";
$i++;
}
echo "<pre>";
print_r($arrayStartTime);
die;
for ($k=0; $k<sizeof($arrayStartTime); $k++)
{
SJB_DB::query('insert into `schedule_slot` (`schedule_id`,`startTime`,`endTime`) values
(?s,?s,?s)',$sid,$arrayStartTime[$k],$arrayStartTime[$k+1]);
}
先感谢您。