PHP - 使用$ _SESSION [duplicate]将值从一个页面传递到另一个页面的数组
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP - 使用$ _SESSION [duplicate]将值从一个页面传递到另一个页面的数组相关的知识,希望对你有一定的参考价值。
这个问题在这里已有答案:
目标:我想传递一个数组,其中包含从页面到另一个页面的值。
问题:说到第二页,我试图print_r数组,它没有任何值。它在第二页上给了我这个php通知:
注意:未定义的索引:第17行的Questionnaire_Category_2.php中的答案
这是我的第一页的代码段,即Questionnaire_Category_1.php
if(isset($_POST['Choice'])){ //When the user submits the answer
$Answer[] = $_POST['Choice']; //All answers from the form will be placed in the array
session_start();
$_SESSION['answers'] = $Answer; //All values of the array will be assigned to the session variable 'answers'
header("Location: Questionnaire_Category_2.php");
}
这是名为Questionnaire_Category_2.php的第二页的代码段
$ANSWER[] = $_SESSION['answers']; //Get all the values from the session and store it in array and also this is the Line 17 that causes a notice message
echo "<pre>"; print_r($ANSWER); echo "</pre>";
问题:
- 我的两个页面的实现是对的吗?
- 如果没有,我如何正确地将数组及其值从一个页面传递到另一个页面?
- 除了使用$ _SESSION之外还有其他方法吗?
答案
在会话中添加和获取值之前执行session_start()
session_start();
$_SESSION['answers'] = $ANSWER;
和
session_start();
$ANSWER = $_SESSION['answers'];
以上是关于PHP - 使用$ _SESSION [duplicate]将值从一个页面传递到另一个页面的数组的主要内容,如果未能解决你的问题,请参考以下文章