02-20-2008, 09:26 AM
|
#4 (permalink)
|
|
The Frequenter
Join Date: Sep 2007
Posts: 360
Thanks: 24
|
PHP Code:
<?php
require_once("conf_global.php");
$_SESSION['is_logged_in'] = 0;
$_SESSION['username'] = "Guest";
echo $_SESSION['is_logged_in'] ;
echo $_SESSION['username'];
session_destroy();
?>
That should be correct. 
__________________
Necessity is the mother of invention.
My blog
|
|
|
|