beav33 Posted June 27, 2006 Share Posted June 27, 2006 Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /homepages/0/d154345321/htdocs/ohire/member.php5:2) in /homepages/0/d154345321/htdocs/ohire/member.php5 on line 6Could somebody help me with this.Explain what it is telling me, like header meaning the actual header or is it something else.I am trying to start a session using the username.This is the member.php5 code for session<?phprequire_once('this_file.php5');session_start();//create short variable names$username = $_Post['username'];$password = $_Post['password'];if ($username && password)// they have just tried logging in{try { login($username, $password); //if they are in the database register the user id $_SESSION['valid_user'] = $username; } catch(Exception $e) { //unsuccessful login echo 'You could not be logged in. You must be logged in to view this page'; exit; }} ?>Then the htmlSorry its long and messyPlease help Quote Link to comment https://forums.phpfreaks.com/topic/12991-user-login-help/ Share on other sites More sharing options...
adamwhiles Posted June 27, 2006 Share Posted June 27, 2006 Sometimes that happens if you are including a file in your code like, you have member.php and have session_start() at the beginning of it, but you also include common.php and at the top of it it has session_start() too. This would cause it to happen twice, that would cause that type of error. Quote Link to comment https://forums.phpfreaks.com/topic/12991-user-login-help/#findComment-49947 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.