我的connect.php中有这段代码
$firstname=$_POST['firstname'];
$_SESSION['firstname']=$firstname;
这在我的Main.php中
$_SESSION['firstname']=$firstname;
echo $firstname;
但是它给了我这个错误未定义的变量:
中的firstname答案 0 :(得分:0)
在你的连接中你应该有像
这样的东西<?php
session_start();
$_SESSION['firstname'] = $_POST['firstname'];
并在Main.php中
<?php
session_start();
echo $_SESSION['firstname'];