Hi there,
To restrict access you can run a snippet at the beginning of the page to check if the user has been logged in. Something like:
session_start();
if ( $_SESSION['user_loggedin'] != 1){
header ("location: notloggedin.php");
exit();
}
and then when someone does login check their details and set $_SESSION['user_loggedin'] to 1
web design by adshires.co.uk