Ver Mensaje Individual
  #5 (permalink)  
Antiguo 22/11/2008, 18:42
Avatar de Wilfred
Wilfred
 
Fecha de Ingreso: octubre-2008
Mensajes: 110
Antigüedad: 16 años, 4 meses
Puntos: 1
Respuesta: Paginator error

jaronu hice eso y ya no me tira error,pero tengo un problema solo quiero que se muestren tres noticias pero se ven todo aunque el valor que le tengo asignado es 3.

dejo aqui el code:
Código:
  include('admin/db-cnx.php');
$_pagi_sql = "SELECT *, notTitulo, notTexto,fecha,DATE_FORMAT(fecha,'%d-%m-%y ') AS fecha FROM sn_noticias ORDER BY not_ID DESC";
$_pagi_cuantos = 3;
include("paginator.inc.php");


//echo "<h1>$titulo</h1>";
// mostramos las noticias,
// otra vez usanod un bucle while

$_pagi_result = mysql_query($_pagi_sql , $db_link) or die ( mysql_error() ); 
while($rowNot = mysql_fetch_array($_pagi_result)){