View Single Post
Old 08-05-2009, 12:49 AM   #8 (permalink)
Bourkster
Senior Member
 
Bourkster's Avatar
 
Join Date: Apr 2008
Posts: 1,774
Reputation: 148
Bourkster will become famous soon enoughBourkster will become famous soon enough

cBay Rating:

Scribe 

Default

Also just write a logged in variable into a session cookie and then do a check such as

PHP Code:
if (isset($_SESSION['logged_in'])){
echo 
"Do logged in stuff";
} else {
echo 
"You are not allowed to be here";

Bourkster is online now   Reply With Quote