php header ( need help)

This is a discussion on "php header ( need help)" within the PHP Forum section. This forum, and the thread "php header ( need help) are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > PHP Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Mar 16th, 2007, 03:33
Up'n'Coming Member
Join Date: Jul 2006
Location: manila
Age: 28
Posts: 61
Thanks: 0
Thanked 0 Times in 0 Posts
php header ( need help)

helo

need help pls i wonder that there is an error on this code ...

<?php
ob_start();
header("location:login.php");
?>

error :

Warning
: Cannot modify header information - headers already sent by (output started at F:\Server\htdocs\fixed-1c\index.php:1) in F:\Server\htdocs\fixed-1c\index.php on line 3
Reply With Quote

  #2 (permalink)  
Old Mar 18th, 2007, 07:40
Ryan Fait's Avatar
SuperMember

SuperMember
Join Date: May 2006
Location: Las Vegas
Posts: 3,786
Thanks: 0
Thanked 0 Times in 0 Posts
Re: php header ( need help)

You can only redirect when nothing has been written to the page. Ie, this will not work:

Code: Select all
<?php
echo "Hello world";
header("Location: login.php");
?>
But this will.

Code: Select all
<?php
header("Location: login.php");
?>
Reply With Quote
  #3 (permalink)  
Old Mar 18th, 2007, 23:46
Junior Member
Join Date: Jan 2006
Posts: 20
Thanks: 0
Thanked 0 Times in 0 Posts
Re: php header ( need help)

Why are you starting output buffering when you want to presumably perform an instant header redirect? In other words, do you really want the ob_start(); there...

I would always recommend shoving
exit;

...directly after a call to header() to ensure that nothing else comes after that might send output to the browser and therefore cause the headers to be sent out and stop your header() call from working.
Reply With Quote
Reply

Tags
php redirect

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
looking for new dog & cat header mizbuffie Graphics and 3D 6 Jun 18th, 2006 22:49
Header Help eulB Graphics and 3D 5 Jun 12th, 2006 22:21
Please help, I need a new header(s) mizbuffie Graphics and 3D 2 May 22nd, 2006 04:04


All times are GMT. The time now is 18:45.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43