xml - picture darstellen

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • xml - picture darstellen

    hallo gemeinschaft

    mit folgendem code erhalte ich den unteren dump

    PHP-Code:
    <?php

    $file 
    file_get_contents("http://xxxx.de/xml/?action=getRoutePictures&routeID=24555&partnerID=1213213");
    $xml simplexml_load_string($file);  

       foreach (
    $xml->Logo as $URL) {
       echo 
    $URL->plot'<br />';
    }
    var_dump($xml)
    ?>
    HTML-Code:
    object(SimpleXMLElement)#1 (1) { ["Picture"]=> array(23) { [0]=> object(SimpleXMLElement)#3 (6) { ["Name"]=> object(SimpleXMLElement)#25 (0) { } ["URL"]=> string(72) "http://www.xxx.de/images/shipimages/427/large/phoenix-artania-pool.jpg" ["Title"]=> string(4) "Pool" ["Type"]=> string(4) "Ship" ["Width"]=> string(3) "320" ["Height"]=> string(3) "228" } [1]=> object(SimpleXMLElement)#2 (6) { ["Name"]=> object(SimpleXMLElement)#26 (0) { } ["URL"]=> string(71) "http://www.xxx.de/images/shipimages/427/large/phoenix-artania-bar.jpg" ["Title"]=> string(4) "Bars" ["Type"]=> string(4) "Ship" ["Width"]=> string(3) "320" ["Height"]=> string(3) "228" } [2]=> object(SimpleXMLElement)#4 (6) { ["Name"]=> object(SimpleXMLElement)#27 (0) { } ["URL"]=> string(72) "http://www.xxxx.de/images/shipimages/427/large/phoenix-artania-bar2.jpg" ["Title"]=> string(4) "Bars" ["Type"]=> string(4) "Ship" ["Width"]=> string(3) "320" ["Height"]=> string(3) "228" } [3]=> object(SimpleXMLElement)#5 (6)
    könnt ihr mir zeigen, wie ich nun die bilder anzeigen lassen kann
Lädt...
X