gpt4 book ai didi

php - 从 php 表单获取 cookie 值

转载 作者:可可西里 更新时间:2023-10-31 22:15:23 25 4
gpt4 key购买 nike

对于用户可能在表单中输入的值,我应该如何设置 cookie 值和名称?我用什么在第二页上显示该值? (为此我不能不使用 cookie,所以虽然可能有更聪明的方法来做到这一点,但我只想知道如何使用 cookie 来做到这一点!!)谢谢!

<?php
setcookie($color, 'color');
setcookie($name, 'name');
?>

<?php
echo "<form action=\"form_data.php\" method=\"post\">";
echo "favorite color:<input type=\"text\" name=\"color\" size=\"20\"><br/>";
echo "name:<input type=\"text\" name=\"name\" size=\"20\"><br/>";
echo "<input type=\"submit\" value=\"Submit\" />";
echo "<br /><input type=\"hidden\" name=\"submitted\" value=\"true\" />";
?>

form_data 上的数据:

  <?php
echo "<b>fav color:</b>".$_COOKIE['color'];
echo "<b>name:</b>".$_COOKIE['name'];
?>

最佳答案

首先,你有你的表格:

<?php
echo "<form action=\"form_data.php\" method=\"post\">";
echo "favorite color:<input type=\"text\" name=\"color\" size=\"20\"><br/>";
echo "name:<input type=\"text\" name=\"name\" size=\"20\"><br/>";
echo "<input type=\"submit\" value=\"Submit\" />";
echo "<br /><input type=\"hidden\" name=\"submitted\" value=\"true\" />";
?>

然后在 form_data.php 中:

<?php
// set the cookie with the submitted user data
setcookie('color',$_POST['color']);
setcookie('name', $_POST['name']);
echo "<b>fav color:</b>".$_COOKIE['color'];
echo "<b>name:</b>".$_COOKIE['name'];
?>

但是,您会注意到 $_COOKIE 变量尚不可用...如果您重新加载该页面,它们将会出现。

为了适应 cookie 的这种行为,您可以在 form_data.php 中设置重定向:

<?php 
if (!empty($_POST)) {
// set the cookie with the submitted user data
setcookie('color',$_POST['color']);
setcookie('name', $_POST['name']);
// redirect the user to final landing page so cookie info is available
header("Location:form_data.php");
} else {
echo "<b>fav color:</b>".$_COOKIE['color'];
echo "<b>name:</b>".$_COOKIE['name'];
}
?>

您可以将它们重定向到任何合适的地方。希望这对您有所帮助,祝您好运!

关于php - 从 php 表单获取 cookie 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6515497/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com