10-21-2008, 12:29 PM
|
#2 (permalink)
|
|
The Acquainted
Join Date: Nov 2007
Location: Sweden
Posts: 106
Thanks: 13
|
Simple Check for a logged in session:
<?PHP
if(ISSET($_SESSION['user_name']))
{
// Donīt perform any action cause a Logged in session is detected
} else {
// Send the snooping people back that has not logged in
header("Location: index.php");
exit;
}
?>
__________________
Of course the whole point of a doomsday machine, would have been lost if you keep it a secret.
|
|
|
|