Ver Mensaje Individual
  #6 (permalink)  
Antiguo 27/05/2011, 07:57
pithon
 
Fecha de Ingreso: mayo-2011
Mensajes: 1.201
Antigüedad: 13 años
Puntos: 10
Respuesta: cargar array de php

no me muestra el array en pantalla
Código PHP:
Ver original
  1. $registros=mysql_query ("SELECT * FROM tabla_archivos order by id_noticias desc",$conexion);
  2.    $imagenes = array();
  3.    while ($row = mysql_fetch_assoc($registros)){
  4.    $imagenes[] = $row['nombre'];
  5.    echo $imagenes"<br>" ;
  6.    
  7.     }