MrBillybob Posted July 28, 2007 Share Posted July 28, 2007 Hello, Whenever i try to redirect the page (code below) i get this: 'Warning: Cannot modify header information - headers already sent by (output started at html/eve/index.php:25) in html/eve/index.php on line 153' header('Location: /index.php'); Quote Link to comment Share on other sites More sharing options...
lightningstrike Posted July 28, 2007 Share Posted July 28, 2007 Please read the topic on the PHP Help Forum designated "HEADER ERRORS - READ HERE BEFORE POSTING THEM". Your error is that you are attempting to redirect after outputting html/data to the page. You avoid this by using ob_start() at the top of the page and ob_flush() at the bottom or just prevent the html from being outputted before the header. Quote Link to comment Share on other sites More sharing options...
tibberous Posted July 28, 2007 Share Posted July 28, 2007 Hehe. Quote Link to comment Share on other sites More sharing options...
MrBillybob Posted July 28, 2007 Author Share Posted July 28, 2007 I searched before this post and dint see that sorry. Quote Link to comment Share on other sites More sharing options...
jitesh Posted July 28, 2007 Share Posted July 28, 2007 Check you haven't write some charactes by echo or print before header. or Check in included files there is not space after completeting php close tags. or write error_reporting(0); in first line of the file. Quote Link to comment 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.