当前位置:Gxlcms >
PHP教程 >
Lostsessionvariblebetweenpages,该怎么解决
Lostsessionvariblebetweenpages,该怎么解决
时间:2021-07-01 10:21:17
帮助过:38人阅读
Lost session varible between pages
movie1.php
$_session['username']="Jhon";
$_session['authuser']=1;
?>
Find my favorite movie!
$myfavmovie=urlencode("transformers");
echo "";
echo "Click here to see information about my favorite movie!";
echo "
".$_session['username']; //ok, display Jhon
?>
moviesite.php
/*
if ($_session['authuser'] != 1){
echo $_session['authuser'];
echo "Sorry, but you don't have pemission to view the page, you loser!";
exit();
}
*/
?>
My movie site -
Welcome to our site,
! //doesn't work, display nothing,why?
My favorite movie is
! //doesn't work, display nothing,why?
My movie rating for this movie is:
//register_globles = OFF
------解决方案--------------------
$_SESSION大写