我正在寻找一种在使用 cookie 提交后保留表单值的方法(在转到 page2 并返回 page_form 之后)。我真的很努力,但我需要你们帮助。
我试过了,但没有用
<? php
if (isset($_POST['Infos_test']))
{
$expire = 8*3600;
setcookie("Infos_test", $_POST['from']&|&$_POST['area_html'], time()+$expire);
}
?>
......
<?php
if (isset($_COOKIE['Infos_test']))
{
$Infos_test = explode("&|&", $_COOKIE['Infos_test']);
}
?>
......
<input type="text" name="from" style="width:350px" value="<?php echo $Info_test[0]; ?>"/>
<textarea valign="top" name="area_html" style="width:350px; height:150px; resize:none;" /><?php echo $Info_test[1]; ?></textarea>