Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个简单的 php 表单。它完美地保存了数据库中的所有数据。但是现在我想要用户在填写表单后单击提交按钮时的确切日期和时间。目前它在数据库中将日期保存为 0000-00-00。谢谢...
在您的 INSERT 查询中,在日期字段中使用 NOW()
INSERT INTO `table`(`date`, .., ..) VALUES(NOW(), .., ..)
如果您的数据库中有 created_at 之类的列,请使用 mysql
ON CREATE CURRENT_TIMESTAMP