eritonalmeida
(usa Debian)
Enviado em 03/05/2012 - 21:53h
Já tentou com meta refresh?
Dá pra usar um while, mas vai ficar mostrando os valores anteriores
<?php
$link = mysql_connect("localhost", "usuario", "senha");
mysql_select_db("banco", $link);
$result = mysql_query("SELECT * FROM tabela", $link);
$num_rows = mysql_num_rows($result);
echo '
<html>
<head>
<meta http-equiv="refresh" content="1"/>
</head>
<body>
<p>Rows: '.$num_rows.'</p>
</body>
</html>';
?>