![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
31/01/2005, 18:03
|
| | Fecha de Ingreso: diciembre-2003 Ubicación: Campehce, Mexico
Mensajes: 325
Antigüedad: 21 años, 1 mes Puntos: 0 | |
es facil
<?
include("conexion.php"); //haces un include a tu arcvhivo de conexion
$consulta = mysql_query("SELECT * FROM tu_tabla ORDER BY id");
while ($row = mysql_fetch_array($consulta)) {
echo "Tu codigo para mostrar las noticias, lo haces mediante $row[]";
}
?>
Un saludp |