使用表单我在表格中添加了一些基本字段。
我还想添加表单中数据的当前日期。
有关如何执行此操作的任何建议将不胜感激。
感谢。
$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');
答案 0 :(得分:1)
您无需使用PHP输入它。在表格中添加TIMESTAMP
列,并将其默认值设置为CURRENT_TIMESTAMP
:
ALTER TABLE `Experiments` ADD COLUMN `time` TIMESTAMP DEFAULT CURRENT_TIMESTAMP
答案 1 :(得分:0)
$ sql =“INSERT INTO Experiments(作者,标题,描述,日期) VALUES ('$ _POST [author]','$ _ POST [title]','$ _ POST [description]',NOW())“;