![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
09/05/2006, 22:26
|
![Avatar de emiliodeg](http://static.forosdelweb.com/customavatars/avatar113967_1.gif) | | | Fecha de Ingreso: septiembre-2005 Ubicación: Córdoba
Mensajes: 1.830
Antigüedad: 19 años, 5 meses Puntos: 55 | |
tenes q cambiar esta linea
$sql = "SELECT id,subtitulo,titulo FROM tb WHERE fecha BETWEEN '$desde' AND '$hasta'";$result=mysql_query($sql, $link) or die(mysql_error($link));
por esta otra
$sql = "SELECT id,subtitulo,titulo FROM tb WHERE fecha BETWEEN '$desde' AND '$hasta' LIMIT $inicio,$TAMANO_PAGINA";$result=mysql_query($sql, $link) or die(mysql_error($link));
espero se solucione tu problema saludos |