Any start off tips??
Don't know what info you'd need to help.. lol
Umm...
There's a script I saw around.. That looked like it allowed members only...
Code: Select all
<?
session_start();
echo "Welcome ". $_SESSIONї'first_name'] ." ". $_SESSIONї'last_name'] ."! You have made it to the members area!<br /><br />";
echo "Your user level is ". $_SESSIONї'user_level']." which enables you access to the following areas: <br />";
if($_SESSIONї'user_level'] == 0){
echo "- Forums<br />- Chat Room<br />";
}
if($_SESSIONї'user_level'] == 1){
echo "- Forums<br />- Chat Room<br />- Moderator Area<br />";
}
echo "<br /><a href=logout.php>Logout</a>";
?>I wan't it to be a certain page...
a page saved to my server...
But only accessible if your logged in...