Lucian Posted January 12, 2007 Share Posted January 12, 2007 Hello,Everytime i run this login PHP code i am using i keep getting these errors:Warning: Cannot modify header information - headers already sent by (output started at /home/www/jamhol37.freehostia.com/login.php:6) in /home/www/jamhol37.freehostia.com/login.php on line 68Warning: Cannot modify header information - headers already sent by (output started at /home/www/jamhol37.freehostia.com/login.php:6) in /home/www/jamhol37.freehostia.com/login.php on line 69Warning: Cannot modify header information - headers already sent by (output started at /home/www/jamhol37.freehostia.com/login.php:6) in /home/www/jamhol37.freehostia.com/login.php on line 72This is the code i have on those lines:setcookie(ID_my_site, $_POST['username'], $hour);setcookie(Key_my_site, $_POST['pass'], $hour);header("Location: members.php");Could someone please tell me how to fix this problem i am having.Thanks,Lucian Quote Link to comment https://forums.phpfreaks.com/topic/33972-heading-errors/ Share on other sites More sharing options...
redbullmarky Posted January 12, 2007 Share Posted January 12, 2007 http://www.phpfreaks.com/forums/index.php/topic,37442.0.html Quote Link to comment https://forums.phpfreaks.com/topic/33972-heading-errors/#findComment-159598 Share on other sites More sharing options...
jwk811 Posted January 12, 2007 Share Posted January 12, 2007 that means you already have html outputted onto the page and you arent allowed to redirect.. make sure you have it before any html is on.. that includes spaces that arent between the php tags.. Quote Link to comment https://forums.phpfreaks.com/topic/33972-heading-errors/#findComment-159599 Share on other sites More sharing options...
wildteen88 Posted January 13, 2007 Share Posted January 13, 2007 The output is comming from or around line 6 in login.php. Post lines 3 - 9 here. Quote Link to comment https://forums.phpfreaks.com/topic/33972-heading-errors/#findComment-159857 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.