Hola amigos , tengo un script que me muestra mensajes de los usuarios y es este :
Código PHP:
<?
echo "<table width=670 border=0>";
$resultn = mysql_query("SELECT * FROM anuncios order by idn desc limit 60");
while ($rown = mysql_fetch_array($resultn))
{
echo
"
<tr>
<td><font size=1 face=Verdana, Arial, Helvetica, sans-serif><font color=#FF9933><strong> <img src=pillados_archivos/flechita.gif width=3 height=7> ".$rown["titulo"]." </strong></font></td>
<td><font size=1 face=Verdana, Arial, Helvetica, sans-serif><font color=#FF9933>".$rown["fecha"]." </strong></font></td>
</tr>
<tr>
<td colspan=2><font size=1 face=Verdana, Arial, Helvetica, sans-serif><font color=#CCCCCC>".$rown["noticia"]."<br></font><font color=#FFFFFF><strong>".$rown["email"]."</strong></font><br><br></td>
</tr>
";
}
echo ' </table>';
?>
COMO PUEDO HACER PARA QUE A LOS 10 MENSAJES ME CREE OTRA PAGINA NUEVA OSEA QUE SALGA LO TIPICO DE :
< 1 2 3 4 5 6 7 > etc......
Gracias amigos !!!