Hola
wolf777
Se me ocurre que puedes hacer algo así:
Código PHP:
<html>
<head>
<script type="text/javascript">
var num=10;
function contador() {
num--;
if(num==0) location='_dos.html';
document.getElementById('seg').innerHTML=num;
}
</script>
</head>
<body onload="setInterval('contador()',1000)">
<p>Redirección en <span id="seg">10</span> segundos.</p>
</form>
</body>
</html>
Saludos,