PHP Newbie here,

I have been able to work out how to detect the browser I'm looking for.

Then I need to take the user to another page.

<? php

if (strstr($HTTP_USER_AGENT,'Windows CE')) {
    //go to the Windows CE version of the site
} else {
    // go to or Stay on the large version
}

?>

Suggestions

Col

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

Reply via email to