我有两个脚本, 第一个:
<?php
//this is the first script with a link to the second
session_start();
$_session['k']='kellogs';
$_session['w']='weetabix';
?>
<html>
<a href="2.php">see me</a>
</html>
第二个脚本
<?php
//this script displays the variables stored in 1.php
session_start();
echo $_session['k'];
echo "<br>";
echo $_session['w'];
?>
<html>
<a href="1.php">see me</a>
</html>
问题是我收到一条错误消息,说明未定义的变量_session。我在两个脚本中都使用了start session方法,我可以看到当我回显session_id()时会话存在,为什么呢?我在wamp服务器2.2上使用php 5.4.3。任何帮助将不胜感激。