为什么这行不通?
下面的代码在 send.php 上
<?php
$expire=time()+60*60*24*30;
$name = $_POST['nameField'];
setcookie("name", $name, $expire);
?>
cookie 的值为空。为什么?我该如何解决?
新问题:
为什么 $_POST['nameField'] 为空?
<form action="/contact/send.php" method="post" id="contactForm">
<input type="text" id="nameField" name="Name" value="<?php if (isset($_COOKIE["name"])){ echo $_COOKIE["name"];} ?>" class="extra_large" />
<input type="submit" class="submit" name="Submit" value=" Send " />