hola
Blashete
Prueba esto:
Código PHP:
<html>
<head>
<script type="text/javascript">
seg=10;
function contar() {
seg--
if (seg==0)
location='pagina2.html';
document.getElementById('segu').innerHTML=seg;
}
</script>
</head>
<body onload="setInterval('contar()',1000)">
<p>Serás redirigido a otra página en <span id="segu">10</span> segundos</p>
<a href="pagina2.html">Ir rápido</a>
</body>
</html>
Saludos,