发布网友 发布时间:2022-04-06 05:04
共2个回答
热心网友 时间:2022-04-06 06:33
<?
$a=$_POST['a'];
if($a == "")
{
echo"<form id=\"a\" name=\"a\" method=\"post\" action=\"test.php\">"
. " email:"
. " <input name=\"a\" type=\"text\" id=\"a\" />"
. " <input type=\"submit\" value=\"确定\" />"
. "</form>"
."";
}
else
{
echo $a;
$a="";
$_POST['a']="";
}
?>
声明:
当一个表单页,已经提交数据到另一页面的时候,如果刷新接收页会出现重试等提示。
热心网友 时间:2022-04-06 07:51
unset($a);