Ver Mensaje Individual
  #2 (permalink)  
Antiguo 31/01/2005, 18:03
ThunderFx
 
Fecha de Ingreso: diciembre-2003
Ubicación: Campehce, Mexico
Mensajes: 325
Antigüedad: 20 años, 4 meses
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