Se nn va così mi arrendo :D
Ma a me funziona perfettamente :)
switch.php:
Codice PHP:
<?
$siti[0]="http://altervista.org";
$siti[1]="http://altervista.org";
$n=getdate();
$toview=(($n['hours']>=1) && $n['hours'] < 7)? $siti[0]: $siti[1];
echo $toview;?>
.html:
Codice PHP:
<html>
<head>
<title>PROVAORARIO</title>
<script type="text/javascript">
function Pagina()
{
var url = "./switch.php";
XMLHTTP = RicavaBrowser(CambioStato);
XMLHTTP.open("GET", url, true);
XMLHTTP.send(null);
}
function CambioStato()
{
if (XMLHTTP.readyState == 4)
{
location.href=XMLHTTP.responseText;
}
}
function RicavaBrowser(QualeBrowser)
{
if (navigator.userAgent.indexOf("MSIE") != (-1))
{
var Classe = "Msxml2.XMLHTTP";
if (navigator.appVersion.indexOf("MSIE 5.5") != (-1));
{
Classe = "Microsoft.XMLHTTP";
}
try
{
OggettoXMLHTTP = new ActiveXObject(Classe);
OggettoXMLHTTP.onreadystatechange = QualeBrowser;
return OggettoXMLHTTP;
}
catch(e)
{
alert("Errore: l'ActiveX non verrà eseguito!");
}
}
else if (navigator.userAgent.indexOf("Mozilla") != (-1))
{
OggettoXMLHTTP = new XMLHttpRequest();
OggettoXMLHTTP.onload = QualeBrowser;
OggettoXMLHTTP.onerror = QualeBrowser;
return OggettoXMLHTTP;
}
else
{
alert("Errore.");
}
}
</script>
</head>
<body onload="Pagina();">
</body>
</html>