NO PONGAS UNO NO LEISTE MI MENSAJE? 
  Código PHP:
    SELECT * from TABLA  LIMIT 0,10 
    
  0,10-> VAS A MOSTRAR 10 REGISTROS  
masticado es asi.. 
 Código PHP:
    $sql="SELECT * FROM tabla LIMIT 0,10";
$consulta=mysql_query($sql) or die(mysql_error());
while($fila=mysql_fetch_array($consulta))
{
  echo $fila[0]; //etc etc 
}