Hi guys,
wondering if it is possible to return the client's browser type (i.e. IE, netscape , mozilla etc ) using PHP??
What I am trying to do here is to direct DHTML supported browsers to a DHTML page and non-DHTML supported browsers to another page.
Browser Info using PHP
Moderator: General Moderators
Code: Select all
<?
if ($name = strstr ($HTTP_USER_AGENT, "MSIE")) { //if its MSIE then
Header ("Location: http://www.espantoso.com/"); //go to espantoso
}
else {
Header ("Location: http://www.eurocentro-ecuador.org.ec/"); //else go to ecuador.org
}
?>http://aspn.activestate.com/ASPN/docs/P ... owser.html
That is all i know, maby you can do something with that