View Single Post
Old 02-20-2008, 09:26 AM   #4 (permalink)
Haris
The Frequenter
Prolific Welcomer Upcoming Programmer 
 
Join Date: Sep 2007
Posts: 360
Thanks: 24
Haris is on a distinguished road
Default

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
Haris is offline  
Reply With Quote