Mega Code Archive

 
Categories / Php / XML
 

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 . " - ";   } } ?>