我的php变量中有一天、一个月和一年,如何在SQLINSERT语句中使用它们?因为我知道要插入该日期的字段是什么类型。
谢谢!
我的php变量中有一天、一个月和一年,如何在SQLINSERT语句中使用它们?因为我知道要插入该日期的字段是什么类型。
谢谢!
Just format the date as a string and pass it to the SQL query
$date = sprintf("%04d-%02d-%02d",$year,$month,%day)