i use session keep the user infomation
in every page i do the follow code to check if the user login or not
sessoin_start();
if (session_is_registered('member'))
.........display the user interface
else
echo "you have not login";
but when i try to login ,the page doesn't show the welcome info
instead,it show the login form;
but other links in the page are added the PHPSESSID=........"
i think the variable $member has been registered ,isn't it?
but why the session_is_registerd() function doesn't work?
in the php.ini register global =on;
is there another way to check this,if i dont use the function?