Jump to content

Warning: Cannot modify header information


jsucupira

Recommended Posts

could some heal with this code? it gives me the error:

Warning: Cannot modify header information - headers already sent by (output started at /home/content/j/s/u/jsucupira/html/members.php:9) in /home/content/j/s/u/jsucupira/html/members.php on line 42

 

I've read that has something to do with spaces or putting the header below something.  I couldn't figure it out.

 

 

<?php
//Connect To Database
$hostname='p50mysql53.secureserver.net';
$username='';
$password='';
$dbname='';
// Connects to your Database
mysql_connect($hostname,$username, $password) OR die(mysql_error());
mysql_select_db($dbname);
//checks cookies to make sure they are logged in
if(isset($_COOKIE['ID_my_site']))
{
$username = $_COOKIE['ID_my_site'];
$pass = $_COOKIE['Key_my_site'];
$check = mysql_query("SELECT * FROM users WHERE username = '$username'")or die(mysql_error());
while($info = mysql_fetch_array( $check ))
{
//if the cookie has the wrong password, they are taken to the login page
if ($pass != $info['password'])
{ header("Location: login.php");
}
//otherwise they are shown the admin area
else
{
echo "Admin Area<p>";
echo "Your Content<p>";
echo "<a href=logout.php>Logout</a>";
}
}
}
else
//if the cookie does not exist, they are taken to the login screen
{
header("Location: login.php");
}
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.