Ver Mensaje Individual
  #2 (permalink)  
Antiguo 23/04/2005, 10:53
raml
 
Fecha de Ingreso: abril-2005
Mensajes: 50
Antigüedad: 19 años
Puntos: 0
De acuerdo Resuelto

El error era el siguiente (en caso de que se preguntaran)

El problema estaba en la manera en que estaba escrito el script the los links Next y Previous.....

Error-------------

Código PHP:
<?php if ($start+$records_per_page $total_records && $start >= 0)
{
    echo 
"<a href=" $_SERVER['PHP_SELF'] . "?start=" . ($start+$records_per_page) . ">Next Page</a>";
}
?>
Sin Errores-------------

Código PHP:
if ($start+$records_per_page $total_records && $start >= 0)
{
    echo 
"<a href=\"" $_SERVER['PHP_SELF'] . "?start=" . ($start+$records_per_page) . "\">Next Page</a>";

Saludos