Código PHP:
<?
if(!isset($_GET[i])){
$i=0;
}else{
$i=$_GET[i];
}
$h="$i"+2;
echo "de $i hasta $h";
$sqllist=mysql_query("SELECT * FROM posts WHERE blog=$id ORDER BY fecha DESC LIMIT $i,$h",$conexion);
if (mysql_num_rows($sqllist)=='0'){
echo "no se encontraron updates";
}else{
while ($lis=mysql_fetch_assoc($sqllist)){
echo "<br>$lis[titulo]<br>$lis[contenido]<br><br>";
}
}
?>
pero me hace esto:
si i=0, me muestra 1 y 2
si i=1, me muestra 2, 3 y 4
si i=2, me muestra 3, 4, 5 y 6
si i=3, me muestra 4, 5, 6, 7 y 8
y asi sigue....,
que pasa???? esta nervioso??