beav33 Posted June 29, 2006 Share Posted June 29, 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 loginecho '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/13179-help-3rd-post/ Share on other sites More sharing options...
.josh Posted June 29, 2006 Share Posted June 29, 2006 change this:[code]<?phprequire_once('this_file.php5');session_start();[/code]to this:[code]<?phpsession_start();require_once('this_file.php5');[/code] Quote Link to comment https://forums.phpfreaks.com/topic/13179-help-3rd-post/#findComment-50710 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.