Loading a remote XML document : simplexml_load_string « XML « PHP
- PHP
- XML
- simplexml_load_string
Loading a remote XML document
<?
$xml = simplexml_load_file('http://rss.news.yahoo.com/');
print "<ul>\n";
foreach ($xml->channel->item as $item) {
print "<li>$item->title</li>\n";
}
print "</ul>";
?>
Related examples in the same category