Hi, Is there a HTML script I can use to send those who use Firefox to one page and those who use IE to another page with different content but both from the same url. Thanks.
a js redirect script should do the trick have a look at: http://www.pageresource.com/jscript/jredir.htm
ps what exactly are you trying to do? is it because the site looks differently in IE, FF, if that's the case and you have css issues there are easier ways
function browser_code() { // Returns the browser code as a LL string, could do with expansion. // Example usage: echo browser_code(); $ua = strtolower($_SERVER['HTTP_USER_AGENT']); $browser = array("firefox" => "FF", "icab" => "IC", "msie" => "IE", "opera" => "OP", "safari" => "SA"); foreach ($browser as $b => $c) { if (strpos($ua, $b) !== false) { return $c; } } } PHP: Completely untested! Enjoy