Jump to content

User Login Help


beav33

Recommended Posts

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 6

Could 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

<?php
require_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 html
Sorry its long and messy
Please help
Link to comment
https://forums.phpfreaks.com/topic/12991-user-login-help/
Share on other sites

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.
Link to comment
https://forums.phpfreaks.com/topic/12991-user-login-help/#findComment-49947
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.