日期插入(To_date)

时间:2013-12-12 13:50:17

标签: php

我可以在这样的表中插入一个值(类型DATE)吗?

foreach ($hbegin as &$value) 
    foreach ($hend as &$value2) 
       $hourBegin = $_POST['hbegin'];   
       $hourEnd = $_POST['hend'];  
       $formatHour = $value.'-'.$value2; 

INSERT INTO table VALUES($formatHour);

注意: hbegin是一个包含开始时间的数组 hbend是一个结束时间为

的数组

示例:

hbegin[10,20,21]
hend[05,30,35]

formatHour

10-05
20-30
21-35

1 个答案:

答案 0 :(得分:0)

这样做..

$newarr=array_combine($_POST['hbegin'],$_POST['hend']);
foreach($newarr as $k=>$v)
{
echo "$k-$v\n";// "prints" 10-05 followed by 20-30 and 21-35
}