HAN! Posted October 29, 2007 Share Posted October 29, 2007 Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at C:\Program Files\wamp\www\hani\login.php:15) in C:\Program Files\wamp\www\hani\login.php on line 16 Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at C:\Program Files\wamp\www\hani\login.php:15) in C:\Program Files\wamp\www\hani\login.php on line 16 can you explain this error to me, thanx. Quote Link to comment https://forums.phpfreaks.com/topic/75196-solved-explanation/ Share on other sites More sharing options...
hostfreak Posted October 29, 2007 Share Posted October 29, 2007 Basically it means exactly what it says. session_start() needs to be at the top of the page. Doesn't seem like it is (line 16). Check to make sure there isn't anything outputting to the browser before session_start(). Even a whitespace before session_start() could cause this error. Edit: Might help to also read http://www.phpfreaks.com/forums/index.php/topic,95562.0.html Quote Link to comment https://forums.phpfreaks.com/topic/75196-solved-explanation/#findComment-380301 Share on other sites More sharing options...
HAN! Posted October 29, 2007 Author Share Posted October 29, 2007 thanks for ur help, the problem was solved Quote Link to comment https://forums.phpfreaks.com/topic/75196-solved-explanation/#findComment-380304 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.