标签: php
我想在php表单的textbox字段中插入当前时间。我应该如何插入它。请帮我。我是php和mysql的新手。
答案 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')?>">