--- Chris Boget <[EMAIL PROTECTED]> wrote:
> You can't use any functions that send headers to the browser (and
> that includes setcookie()) before you use:
> 
> header( 'location: http://blah' );
> 
> The browser will choke.

I'm not sure what gave you this idea, but this is false. What browser were you
using that "choked", and what does that mean exactly?

Use this sample code:

header('Foo: Bar');
header('Location: http://www.google.com/');

Chris

=====
Become a better Web developer with the HTTP Developer's Handbook
http://httphandbook.org/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to