Ver Mensaje Individual
  #2 (permalink)  
Antiguo 14/10/2011, 13:37
Avatar de Triby
Triby
Mod on free time
 
Fecha de Ingreso: agosto-2008
Ubicación: $MX->Gto['León'];
Mensajes: 10.106
Antigüedad: 15 años, 8 meses
Puntos: 2237
Respuesta: [Problema] noticia vacia

Me gustaria saber porque haces esto:

Código PHP:
Ver original
  1. while(($count<$rpp) && ($i<$tcount)) {
  2.             mysql_data_seek($resultado,$i);
  3.             $quer = mysql_fetch_array($resultado);
  4.             // output each row:
  5.             $notice = mysql_fetch_array($resultado);

Creo que seria mas facil:
Código PHP:
Ver original
  1. while($quer = mysql_fetch_array($resultado)) {
  2.             // Y, si aparte necesitas $notice
  3.             $notice = $quer;
  4.  
  5. // Si no usas $quer para nada, entonces:
  6. while($notice = mysql_fetch_array($resultado)) {

Listo, con eso recorreras las noticias secuencialmente sin brincarte alguna
__________________
- León, Guanajuato
- GV-Foto