this is a redireczion between all browser:
just put a correct fileafter header location:
<?
$IE=eregi("MSIE",$HTTP_USER_AGENT);
if ($IE==true) {
header("Location: .html");
exit;
}
$NN6=eregi("Gecko",$HTTP_USER_AGENT);
if ($NN6==true) {
exit;
}
$NN=eregi("mozilla",$HTTP_USER_AGENT);
if ($NN==true) {
header("Location: .html");
exit;
}
else {
header("Location: .html");
exit;
}
?>