simmsy Posted December 7, 2011 Share Posted December 7, 2011 Hello, Im having a little trouble with this coding I need it to goto this page after an if statement but get this dreaded error Warning: Cannot modify header information - headers already sent by (output started at /home/fightwa1/public_html/fightlivecommentaryrd1.php:15) in /home/fightwa1/public_html/fightlivecommentaryrd1.php on line 57 there are no whitespaces before or after the start and endin <?php, as previously read about. Really struggling with this problem, if anyone can help will be much appreciated. Quote Link to comment https://forums.phpfreaks.com/topic/252713-warning-cannot-modify-header-information-headers-already-sent-by/ Share on other sites More sharing options...
scootstah Posted December 7, 2011 Share Posted December 7, 2011 The error means there is output before the header. So look for it. Quote Link to comment https://forums.phpfreaks.com/topic/252713-warning-cannot-modify-header-information-headers-already-sent-by/#findComment-1295544 Share on other sites More sharing options...
freelance84 Posted December 8, 2011 Share Posted December 8, 2011 Yea, basically you cannot do a header after printing anything. IE if you print any html to the client then try to do a header you will get that type of error. Check out the manual pages about it. Also, this thread covers your question pretty well... http://www.phpfreaks.com/forums/index.php?topic=349455.0 Quote Link to comment https://forums.phpfreaks.com/topic/252713-warning-cannot-modify-header-information-headers-already-sent-by/#findComment-1295556 Share on other sites More sharing options...
PFMaBiSmAd Posted December 8, 2011 Share Posted December 8, 2011 output started at /home/fightwa1/public_html/fightlivecommentaryrd1.php:15 Line 15 of fightlivecommentaryrd1.php is sending something to the browser, probably html markup. Quote Link to comment https://forums.phpfreaks.com/topic/252713-warning-cannot-modify-header-information-headers-already-sent-by/#findComment-1295557 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.