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', 0, PDO::PARAM_INT);
$noticias->bindValue(':fin', 2, PDO::PARAM_INT);
return $noticias->fetchall();