Forgive me. I'm new to php.

I put the function in my function.php include file which is loaded before I
display anything.

I want to redirect the browser to a new url once the php script is finished.

Johnny

-----Original Message-----
From: Evan Nemerson [mailto:[EMAIL PROTECTED]
Sent: Friday, March 28, 2003 3:56 PM
To: Johnny Martinez
Subject: Re: [PHP] Redirec.t


No. You have to send header information before you output anything even- 
before the <html>. On your document, you have to put it before what is 
currently line 12.



On Friday 28 March 2003 03:39 pm, you wrote:
> Tried that...here is the error:
>
> Warning: Cannot modify header information - headers already sent by
(output
> started at D:\bmc\uploads\request_mdb\header.php:12) in
> D:\bmc\uploads\request_mdb\functions.php on line 16
>
>
> Any ideas? Does this only work in the <head></head>?
>
> Johnny
>
> -----Original Message-----
> From: Evan Nemerson [mailto:[EMAIL PROTECTED]
> Sent: Friday, March 28, 2003 3:34 PM
> To: Johnny Martinez; [EMAIL PROTECTED]
> Subject: Re: [PHP] Redirec.t
>
>
> header("Location: http://www.domain.com/admin.php";);
>
> if you _really_ need to use your syntax, you could
>
> function redirect($uri) { header("Location: ".$uri); }
>
> On Friday 28 March 2003 03:28 pm, Johnny Martinez wrote:
> > Hi all,
> > Can someone tell me the function to redirect a browser to a specific
> > page?
> >
> > Johnny
> >
> > For example:
> > <?
> >
> > code...
> > code...
> > code finished.
> >
> > redirect("http://www.domain.com/admin.php";);
> >
> > ?>

-- 
Everything has a natural explanation. The moon is not a god but a great rock

and the sun a hot rock.

-Anaxagorus

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

Reply via email to