Ver Mensaje Individual
  #6 (permalink)  
Antiguo 02/08/2009, 01:00
Avatar de abimaelrc
abimaelrc
Colaborador
 
Fecha de Ingreso: mayo-2009
Ubicación: En el planeta de Puerto Rico
Mensajes: 14.734
Antigüedad: 15 años, 5 meses
Puntos: 1517
Respuesta: Mostrar post que sobran en otra pag

Esto es un ejemplo de lo que puedes hacer

Código PHP:
Ver original
  1. $getRowsPerPage = 5;
  2. $getLimit = (empty($_POST["post"]) || $_POST["post"] < 0 ? 0 : $_POST["post"]);
  3.  
  4. $select_anuncios = "SELECT *
  5.     FROM tbl_anuncios
  6.     LIMIT $getLimit, $getRowsPerPage";
  7. $r = mysql_query($r) or die(mysql_error());
  8.  
  9. echo "<a href='".$_SERVER["PHP_SELF"]."?post=".($getLimit-$getRowsPerPage)."'>$getRowsPerPage menos</a>
  10.    | <a href='".$_SERVER["PHP_SELF"]."?post=".($getLimit+$getRowsPerPage)."'>$getRowsPerPage más</a>";