我有一个包含一些用户详细信息的表单,并允许他们上传文件。文件名和信息保存到 csv 文件中。
如果用户没有填写所有字段,表单会要求他们填写并重试。我希望它记住用户输入的值,所以我使用 php 设置表单字段的默认值:
value="<?php print $fulltitle;?>"
其中 $fulltitle = $_POST['fulltitle'];
但是,如果用户提交的内容不成功,点击重置不会清除表单,它会返回他们之前的尝试。
如何使重置功能起作用?在我尝试使用的重置按钮中
onclick="<?php $fulltitle='' ?>"
但它似乎没有效果,我猜是因为在你点击重置时 PHP 已经被处理了。
有人有什么建议吗?
编辑:
感谢您的帮助,我按照建议通过简单的重新加载解决了这个问题。对于任何寻找问题答案的人:
我放了一个重置按钮,而不是:
<FORM METHOD="LINK" ACTION="resetform.php">
<INPUT TYPE="submit" VALUE="Reset">
</FORM>
在文件 resetform.php 我有:
<?php
$firstname = '' ;
$lastname = '' ;
$fulltitle = '' ;
$email = '' ;
// etc.
header("Location: submitfile.php");
?>
其中 submitfile.php 是表单
/编辑
修剪后的代码如下...
标题:
<?php
//error_reporting(E_ALL & ~E_NOTICE);
$message = false;
if(isset($_POST['Submit'])){
//user input with commas and < stripped:
$firstname = str_replace("<","",str_replace(",",";",$_POST['firstname']));
//if values missing, dont process:
if(empty($firstname)){
$message = '<span style="color:red;text-align:center;">Please complete all required(*) fields,<br />and check the file has been selected correctly.</span>';
$aClass = 'errorClass';
}
else {
//return data array cvsData from user input
$cvsData = $firstname
fwrite($fp,$cvsData);
fclose($fp);
//reset form
$firstname = '' ;
$message = '<span style="color:blue;text-align:center;">Submission successful, thank you.</span>';
}
}
//if page reloaded, clear form:
else {
$firstname = '' ;
}
?>
身体:
<form enctype="multipart/form-data" id="form1" name="form1" method="post" action="<?php echo $_SERVER['PHP_SELF'] ?>" >
<table>
<?php
if ($message != false)
{
print "<tr><td colspan='2'><span align='center'>" . $message . "</span></td></tr>";
}
?>
<tr>
<td width="200"><span class="texto">*First Name(s)</span></td>
<td><input type="text" name="firstname" id="firstname" value="<?php print $firstname;?>" /></td>
</tr>
<tr>
<td colspan="2">
<div align="center">
<input type="submit" name="Submit" id="Submit" value="Submit"/>
<input type="reset" name="Reset" id="Reset" value="Reset" />
</div>
</td>
</tr>
</table>