Fetching a remote XML document : simplexml_load_string « XML « PHP
- PHP
- XML
- simplexml_load_string
Fetching a remote XML document
<?php
$url = 'http://rss.news.yahoo.com/rss/oddlyenough';
$rss = simplexml_load_file($url);
print '<ul>';
foreach ($rss->channel->item as $item) {
print '<li><a href="' .
htmlentities($item->link) .
'">' .
htmlentities($item->title) .
'</a></li>';
}
print '</ul>';
?>
Related examples in the same category