<?php
$xmlDoc = new DOMDocument();
$xmlDoc->load("http://www.manager.co.th/RSS/Home/Breakingnews.xml");
$data = $xmlDoc->documentElement;
foreach($data->childNodes as $item){
print $item->nodeValue."<br>";
}
?>
พอรันมันขึ้น Error ดังนี้
Warning: DOMDocument::load() [function.DOMDocument-load]: php_network_getaddresses: getaddrinfo failed: No such host is known. in C:\AppServ\www\rss_test.php on line 3
Warning: DOMDocument::load(http://www.manager.co.th/RSS/Home/Breakingnews.xml) [function.DOMDocument-load]: failed to open stream: No such file or directory in C:\AppServ\www\rss_test.php on line 3
Warning: DOMDocument::load() [function.DOMDocument-load]: I/O warning : failed to load external entity "http://www.manager.co.th/RSS/Home/Breakingnews.xml" in C:\AppServ\www\rss_test.php on line 3
Warning: Invalid argument supplied for foreach() in C:\AppServ\www\rss_test.php on line 6