我需要在
PHP中使用绑定参数在MysqLi PDO中执行这个mySQL查询:
MysqL_query("INSERT INTO `posts` (post_name,publish_date) VALUES ($post_name,NOW()) ")
我使用这样的脚本,但它没有正确插入publish_date.
$publish_date = 'NOW()'; $insert = $MysqLi->prepare("INSERT INTO posts (post_name,publish_date) VALUES (?,?)"); $insert->bind_param("ss",$post_name $publish_date); $insert->execute();
它将记录插入到publish_date列中,如下所示:0000-00-00 00:00:00
我怎样才能做到这一点 ?提前致谢.
P.S:日期列的类型是datatime.