![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
30/03/2004, 19:06
|
| | Fecha de Ingreso: diciembre-2003
Mensajes: 65
Antigüedad: 21 años, 2 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. |