Yep, or you could echo Javascript, or you could use output buffering,
any of these will get your pages redirecting.



On Fri, 2003-06-27 at 09:06, Gary Ogilvie wrote:
> I didn't realise you could use echo to run a URL. Thanks for your help
> :)
> 
> -----Original Message-----
> From: Adam Voigt [mailto:[EMAIL PROTECTED] 
> Sent: 27 June 2003 14:08
> To: Gary Ogilvie
> Cc: 'PHP General'
> Subject: Re: [PHP] Using header in if statement
> 
> Just have it echo, example:
> 
> echo "<meta http-equiv=\"refresh\"
> content=\"0;url=http://192.92.0.248/company_search/admin/admin2.php\";>";
> 
> 
> On Fri, 2003-06-27 at 09:03, Gary Ogilvie wrote:
> > If I attempt to direct the user to a url with in a if statement using
> a
> > header I get the following error message:
> >  
> > Warning: Cannot modify header information - headers already sent by
> > (output started at
> c:\inetpub\wwwroot\company_search\admin\login.php:3)
> > in c:\inetpub\wwwroot\company_search\admin\login.php on line 48
> >  
> > The code I am trying :
> >  
> > if ($myUser == $myReturnedUser && $myPass == $myReturnedPass) {
> >             ("Location:
> > http://192.92.0.248/company_search/admin/admin2.php";);
> > } else {
> >  
> > Is there any other way I can try and do this?
> >  
> > Many thanks
-- 
Adam Voigt ([EMAIL PROTECTED])
Linux/Unix Network Administrator
The Cryptocomm Group


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

Reply via email to