![enojado](http://static.forosdelweb.com/fdwtheme/images/smilies/enojado.png)
Quiero hacer un páginador para el siguiente códe:
Código PHP:
<? include("config.php");
$tabla = mysql_query("SELECT * FROM juegos ORDER BY id ASC LIMIT 10");
while ($registro = mysql_fetch_array($tabla)) {
?>
<img src="<? echo $registro["img"] ; ?>" width="120"
height="160">
<? }?>