View Single Post
Old 02-17-2008, 09:01 PM   #9 (permalink)
owenj2o
The Wanderer
 
Join Date: Jan 2008
Posts: 14
Thanks: 2
owenj2o is on a distinguished road
Default

Use this code
PHP Code:
session_destroy($_SESSION['<<session_name>>']);
unset(
$_SESSION['<<session_name>>']); 
and voila, the session is no more.
Just remember to put the session name in the right place.
owenj2o is offline  
Reply With Quote