Loading from server : DomDocument « XML « PHP
- PHP
- XML
- DomDocument
Loading from server
<?php
$data = DOMDocument::load ( "http://data.org/data.xml" );
$stories = $data->getElementsByTagName ( "story" );
foreach ( $stories as $story ) {
$titles = $story->getElementsByTagName ( "title" );
foreach ( $titles as $title ) {
echo $title->nodeValue . " - ";
}
}
?>
Related examples in the same category