Ver Mensaje Individual
  #3 (permalink)  
Antiguo 24/08/2003, 18:48
Avatar de pereztroff
pereztroff
 
Fecha de Ingreso: junio-2002
Ubicación: En la Internet.
Mensajes: 4.068
Antigüedad: 21 años, 10 meses
Puntos: 5
tengo esto y las imagenes no salen:

Código PHP:
<?
include('../inc/conexion.php');
$select_notas mysql_query("SELECT * FROM rm_notas ORDER BY id DESC LIMIT 0, 5");
for (
$x 1$x <= 5$x++) {
  
$nota mysql_fetch_array($select_notas);
  echo
"<img src=\"../img_noticias/".$nota[imagen]."\"><br>";
    echo(
$nota[titulo].",".$nota[intro].",".$nota[texto]);
    echo 
"<hr>";

    
}
?>