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

al final hice algo asin no vale.
Código PHP:
Ver original
  1. <?php
  2.  $registros=mysql_query ("SELECT * FROM tabla_archivos order by id_noticias desc",$conexion);
  3.    $imagenes = array();
  4.    while ($row = mysql_fetch_assoc($registros)){
  5.    $imagenes[] = $row['imagen_1'];
  6.     }
  7.  ?>