Re...,
Et avec une fonction comme ceci :
et un body comme cela :
On peu toujours essayer
Et avec une fonction comme ceci :
Code :
function timer(t2)
{
if (t2>=10) {document.form1.timer.value="";}
else { document.form1.timer.value="0"; }
if (t2<=1) {
document.form1.timer.value+=""+t2+" seconde";
}
else{
document.form1.timer.value+=""+t2+" secondes";
}
if(t2>0) { t2--; }
else {window.location.reload();}
setTimeout('timer('+t2+')',1000);
}
et un body comme cela :
Code PHP :
<?
if($temps1>10){?>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<?}else {?>
<body onLoad="timer(10);" bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<?}
?>