Aqui les dejo el script, gracias.
Código:
<?php
$pag=$_GET["pag"];
$call=mysql_query("select codigo from todo ORDER BY fecha DESC LIMIT '$pag'*6-6,'$pag'*6",$conexion);
while($datos=mysql_fetch_array($call)){
echo $datos[0];}
echo mysql_error($conexion);
mysql_free_result($call);
mysql_close($conexion);
?>