如何使用php和mysql将当前时间放在表单中?我想把当前时间放在这些领域请帮助我

时间:2013-11-16 10:56:07

标签: php

我想在php表单的textbox字段中插入当前时间。我应该如何插入它。请帮我。我是php和mysql的新手。

2 个答案:

答案 0 :(得分:3)

一些简单的谷歌会解决它。

<input type="text" name="time" value="<?php echo date('H:i:s')?>">

时间手册   http://php.net/manual/en/function.time.php

答案 1 :(得分:2)

<input type="text" name="curr_time" value="<?php echo date('H:i:s')?>">