<html>
<body>
<form name="form" method="post">
<input type="text" name="text_box" size="50"/>
<input type="submit" id="search-submit" value="submit" />
<?php
$date =
$file=fopen(date("Y-m-d").".txt","a+") or exit("Unable to open file!");
if ($_POST["text_box"] <> "")
{
fwrite($file,$_POST["text_box"]." \n");
}
fclose($file);
?>
有没有办法可以在有输入时输入日期?
提前谢谢你们
答案 0 :(得分:-1)
使用此代码
$(document).ready(function(){
$("input:text").val("<?php print date('Y-m-d');?>");
});