Ver Mensaje Individual
  #4 (permalink)  
Antiguo 02/10/2009, 04:40
samu22
 
Fecha de Ingreso: abril-2008
Mensajes: 453
Antigüedad: 16 años, 1 mes
Puntos: 16
Respuesta: Problemas al leer XML

Código php:
Ver original
  1. <?php
  2. $archivo = 'prueba.xml';
  3. if (file_exists($archivo)) {
  4.      $imgs= simplexml_load_file($archivo);
  5.      if($imgs){
  6.            foreach($imgs->imgs as $img){
  7.            echo $img["path"];
  8.       }
  9. } else {
  10.      echo "error al Abrir el archivo";
  11. }
  12.  
  13. ?>

probalo asi