你如何在 MySQL 中插入CURDATE()
和?CURTIME()
我将它们分别插入到数据库表中的日期和时间字段中。
$query = "INSERT INTO `ordisp` (date, time, operator, status, completed, name, email) VALUES (CURDATE(), CURTIME(), '".$operator."', '".$status."', '".$complete."', '".$name."', '".$email."')";
为什么这不起作用?