Ver Mensaje Individual
  #3 (permalink)  
Antiguo 14/05/2014, 19:50
quico5
 
Fecha de Ingreso: enero-2008
Mensajes: 580
Antigüedad: 16 años, 3 meses
Puntos: 9
Respuesta: sql -> query -> PDO -> limit no funciona

gracias italico76, yo también los he visto

he probado basandome en esos ejemplos pero nada

Código PHP:
$noticias $this->_db->query("SELECT * FROM noticias ORDER BY id DESC LIMIT :inicio, :fin");
$noticias->bindValue(':inicio'0PDO::PARAM_INT);
$noticias->bindValue(':fin'2PDO::PARAM_INT);
return 
$noticias->fetchall();