从表单发布时向表中添加日期

时间:2013-01-21 21:19:51

标签: php date

使用表单我在表格中添加了一些基本字段。

我还想添加表单中数据的当前日期。

有关如何执行此操作的任何建议将不胜感激。

感谢。

$sql="INSERT INTO Experiments(Author, Title, Description) 
    VALUES
('$_POST[author]','$_POST[title]','$_POST[description]')";

if (!mysql_query($sql,$connection))
    {
die('Error: ' . mysql_error());
    }
header('Location: http://example.com');

2 个答案:

答案 0 :(得分:1)

您无需使用PHP输入它。在表格中添加TIMESTAMP列,并将其默认值设置为CURRENT_TIMESTAMP

ALTER TABLE `Experiments` ADD COLUMN `time` TIMESTAMP DEFAULT CURRENT_TIMESTAMP

哦,拜托sanitize your data entry

答案 1 :(得分:0)

$ sql =“INSERT INTO Experiments(作者,标题,描述,日期)     VALUES ('$ _POST [author]','$ _ POST [title]','$ _ POST [description]',NOW())“;