Oops. Typos. Try this:

if(strstr($HTTP_USER_AGENT, "Mozilla/4")){
    header("Location: http://www.mydomain.com/moz4_page.php";);
}

elseif(strstr($HTTP_USER_AGENT, "MSIE")){
   header("Location: http://www.mydomain.com/ie_page.php";);
}

-----Original Message-----
From: Michael [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, June 17, 2003 1:12 PM
To: Jay Blanchard; Ralph; [EMAIL PROTECTED]
Subject: Re: [PHP] Redirecting to index.php from index.html

With that I get:

Parse error: parse error, unexpected T_STRING in
/path/to/file_named/main.php 
on line 4

Michael


On Tuesday 17 June 2003 02:50 pm, Jay Blanchard wrote:
> [snip]
> If I use this on index.html, it does nothing.  If I use it on
index.php
> I get:
>
> Parse error: parse error, unexpected '=' in
> /path/to/file_named/main.php on line 3
>
> What am I doing wrong
>
> On Tuesday 17 June 2003 02:11 pm, Ralph wrote:
> > <?php
> >
> > if(strstr = ($HTTP_USER_AGENT, "Mozilla/4")){
> >    header("Location: http://www.mydomain.com/moz4_page.php";)
> > }
> >
> > elseif(strstr = ($HTTP_USER_AGENT, "MSIE")){
> >    header("Location: http://www.mydomain.com/ie_page.php";)
> > }
>
> [/snip]
>
>
> Shouldn't it  be ....
>
> > if(strstr($HTTP_USER_AGENT, "Mozilla/4")){
> >    header("Location: http://www.mydomain.com/moz4_page.php";)
> > }
> >
> > elseif(strstr($HTTP_USER_AGENT, "MSIE")){
> >    header("Location: http://www.mydomain.com/ie_page.php";)
> > }
>
> HTH

-- 
Exasource Inc.
Web: http://www.exasource.com
Email: [EMAIL PROTECTED]
Phone: 970-206-4556

"The Israelite army looked at Goliath and said,  he's so big we can't 
 possibly win.  David looked at Goliath and said, wait a minute, he's 
 so big I can't possibly miss"



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

Reply via email to