Ver Mensaje Individual
  #2 (permalink)  
Antiguo 30/03/2004, 19:06
hYuNkEl
 
Fecha de Ingreso: diciembre-2003
Mensajes: 65
Antigüedad: 20 años, 4 meses
Puntos: 1
Es facil mira toma este ejemplo


$result = mysql_query("SELECT*FROM tabla");

$num = 0;
while(mysql_fetch_array($result)){
$num++;
echo "Noticia numero".$num."<br>";
}

Eso es todo.