Hello:
On my first page I have a session start. I`m trying to solve a security problem cause I would like only for some people to view it.
The way I'm solving it is with sessions. But suppose I call the page.php like without a session my session register won't work.
Cause When I call the session and ask if the condition is met then do load the page if not echo a message. So the way I`m doing this is
$login=$HTTP_SESSION_VARS['login'];
That calls the person who is logged for example
so I ask if ($login!="") then do this if not
echo a message.
I also ask if echo $login and nothing appears
So why won`t my condition work. Any ideas on how to solve my little security problem
Thanks in advance for anyone who helps.