将数组中的所有变量传递给另一个php文件

时间:2017-08-11 16:39:02

标签: php

我有2页,signup.php和errors.php在errors.php我有:

$signuperrors = array(username, password, repassword, email);

我在这个数组中存储错误。我想在signup.php上使用这个数组这是一个愚蠢的问题,可能是因为我最近开始使用php。谢谢!

2 个答案:

答案 0 :(得分:1)

你的意思是会话..它就像一个变量,但保存在php服务器(Apache)的内存中

首先在html标签之前(任何地方)使用会话变量的所有页面上声明会话

<?php
session_start();
?>

然后开始声明你的变量

$_SESSION["signuperrors"] = array(username, password, repassword, email);
$_SESSION["sample"] = "sample string";

希望这有帮助

然后,您现在可以将这些值访问到其他页面

样品:

print_r($_SESSION["signuperrors"]); 
echo $_SESSION["sample"];

答案 1 :(得分:0)