[snip]
which points to this page,
<?php
session_start;
//Check the user has logged in with a valid password
if ($_SESSION['authuser']!=1) {
echo "Sorry, you're not authorized to access this page";
exit();
}
?>
[/snip]You forgot the parentheses after session_start(); (Assuming that you cut and pasted) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

