I have found this code from Rincewind. I have uploaded it to my website [
www.techitoutuk.com] Could somebody with IE5 with Mac try it for me
<?php
$User_Agent = $_SERVER['HTTP_USER_AGENT'];
if ((eregi("MSIE", $User_Agent)) &&
(!((eregi("AOL", $User_Agent)) ||
(eregi("WebTV", $User_Agent))))) {
// browser is MSIE.
if (eregi("mac", $User_Agent)) {
// and it's running on a Mac.
// so redirect.
header ('Location: http://www.example.com');
exit();
}
}
?>
Tony