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