0

在PHP中,我将设置cookie并给它一个变量值,当用户输入他们的名字时,他们将被带到另一个页面但是当他们到达那个新页面时,我需要将该cookie的值更改为他们输入的名称,有人可以告诉我如何做到这一点吗?

4

2 回答 2

3

您可以简单地将名称传递给setcookie,这将覆盖之前存储的任何值。

setcookie("name", $name, time() + 60 * 60 * 24); // expires in a day
于 2012-11-11T01:05:31.277 回答
0

例如在第一页(index.php)

<?php
//check if the form is submitted
if($_POST['update_name']){
    if(!empty($_POST['name'])){
        //name filed is filled

        //define cookie expire time
        $expire = time()+60*60*24*30; #cookie will expire after a month
        //set the cookie
        setcookie("name", $_POST['name'], $expire);
        //take the user to another page
        header("location: page_two.php");
    }else{
    //form was submitted with empty name field
    //show error message
    echo "Name is required";
    }
}
?>
<form method="POST" action="<?php echo $_SERVER['PHP_SELF'];?>">
<input type="text" name="name" />
<input type="submit" name="update_name" value="Submit" />
</form>

在 page_two.php

<?php
echo $_COOKIE["name"];
?>
于 2012-11-11T01:22:07.027 回答