I've just managed to get the login and register pages of my website to work, but the session start function doesnt seem to work. I need to restrict a few pages for viewing by members only.
The code i used is
session_start();
if (@$_SESSION['auth'] != "yes"
{
exit{};
}.
HELP!