brown2005 Posted October 3, 2006 Share Posted October 3, 2006 currently, my logout.php is<?session_start(); if(empty($_SESSION['MembersID'])){ header("location: http://www.allinthissite.co.uk/index/index.php");}session_start();session_unset();session_unregister();session_destroy();header("location: http://www.allinthissite.co.uk/index/index.php");?>should i change this or is this ok, as it does logout, but i have seen other things in other logout.php's like exit;and session_unregister('wat ever here');<?session_start(); if(empty($_SESSION['MembersID'])){ header("location: http://www.allinthissite.co.uk/index/index.php");exit;}else{ session_unset('MembersID');session_unregister('MembersID');session_destroy('MembersID');header("location: http://www.allinthissite.co.uk/index/index.php");exit;}?>thats what i was thinking i should change to... Link to comment https://forums.phpfreaks.com/topic/22870-sessions-logout/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.