Potresti provare:
...dovresti fare un pò di prove...Codice PHP:
<?php
session_start();
if($_SESSION['accesso'] == false)
{
if(strpos($_SERVER["HTTP_USER_AGENT"], "MSIE 6.0"))
echo "<meta http-equiv="."\"refresh\""."content="."\"0;url=dance.php\">";
else
header('Location: dance.php');
exit;
}
?>