gpt4 book ai didi

php - 如何在php脚本之间传递变量?

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

有什么方法可以在 php 脚本之间传递值和变量吗?

正式地,我尝试编写一个登录页面,当用户首先输入错误的输入时,另一个脚本将检查输入,如果输入错误,站点将返回到最后一个脚本页面并显示警告,如“这是错误的输入”。为此,我想我需要从脚本中传递值。

问候...:P

最佳答案

通过 GET 传递信息:

    header('Location: otherScript.php?var1=val1&var2=val2');

session :

    // first script
session_start();
$_SESSION['varName'] = 'varVal';
header('Location: second_script.php'); // go to other

// second script
session_start();
$myVar = $_SESSION['varName'];

帖子:看看this .

关于php - 如何在php脚本之间传递变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5678567/

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