需要准备的材料分别是:电脑、php编辑器、浏览器。
1、首先打开mysql查询器,例如以c1表add_time字段为例。
2、其次,打开php编辑器,新建php文件,例如:index.php。
3、在index.php中,输入代码:$date = date('Y-m-d');$conn = new mysqli('localhost', 'root', '', 'test');$sql = 'update c1 set add_time="' . $date . '"';$conn->query($sql);。
4、浏览器运行index.php页面,之后在mysql查询器查看,发现时间已经被存进add_time了。
我用了datetime类型,问题解决了,谢谢,也谢谢楼上的
本回答被提问者和网友采纳需要准备的材料分别是:电脑、php编辑器、浏览器、mysql查询器。
1、首先打开mysql查询器,以c1表add_time字段为例。
2、其次,打开php编辑器,新建php文件,例如:index.php。
3、在index.php中,再输入代码:$date = date('Y-m-d');$conn = new mysqli('localhost', 'root', '', 'test');$sql = 'update c1 set add_time="' . $date . '"';$conn->query($sql);。
4、浏览器运行index.php页面,在mysql查询器查看,发现时间已经被存进add_time了。
本回答被网友采纳