How can i detect a users browser
for example
<? if browser is IE { header(Location:ie.php3); } else { header(Location:other.php3); } ?>
You can detect it through enviroment variables ...
$browser = $HTTP_USER_AGENT;
Slaven
Also may want to try looking at the get_browser() function: http://www.php.net/manual/function.get-browser.php
Read this column on PHPBuilder:
http://www.phpbuilder.com/columns/tim20000821.php3
for example <? if browser is IE { header(Location:ie.php3); } else { header(Location:other.php3); } ?>