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大写
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn