Just use a normal login script and then adapt it.
You could make a new field in the username table of a database (SQL) and store in it the name of the page you would like to assosiate (how do you spell that???) with that user. Then after their login has been validated you could use something like this
PHP Code:
$usename = (their username);
$check = mysql_query("SELECT * FROM table WHERE username = '$username'")or die(mysql_error());
$info = mysql_fetch_array($check);
$page = $info['fieldname'];
header("Location: $page");
Bookmarks