steelerman99 Posted July 13, 2007 Share Posted July 13, 2007 Hello, I'm somewhat new to php. I have a login script that i wrote. When i try to log someone out, i'm not totally sure what to do to clear ALL session variables. I thought session_destroy() would do the trick, but that's not the case. What should i do to get rid of all of the session variables i have? Thanks!!! Link to comment https://forums.phpfreaks.com/topic/59746-log-out-destroying-all-variables/ Share on other sites More sharing options...
trq Posted July 13, 2007 Share Posted July 13, 2007 $_SESSION = array(); Link to comment https://forums.phpfreaks.com/topic/59746-log-out-destroying-all-variables/#findComment-296953 Share on other sites More sharing options...
steelerman99 Posted July 13, 2007 Author Share Posted July 13, 2007 Thanks! One more question: On the logout screen, i now get this warning message: Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at C:\wamp\www\logout.php: in C:\wamp\www\logout.php on line 9 What is causing this? Link to comment https://forums.phpfreaks.com/topic/59746-log-out-destroying-all-variables/#findComment-297474 Share on other sites More sharing options...
GingerRobot Posted July 13, 2007 Share Posted July 13, 2007 Take a look at the sticky here In your script, you must be sending something to the browser before you call session_start(), which you cannot do. Link to comment https://forums.phpfreaks.com/topic/59746-log-out-destroying-all-variables/#findComment-297504 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.