İstek üzerine daha önce yapmış olduğum bir örneği paylaşıyorum.
<?php $url = 'http://ulusanyazilim.com/feed/'; $rss = new DOMDocument(); $rss->load($url); $feed = array(); foreach ($rss->getElementsByTagName('item') as $node) { $item = array ( 'title' => $node->getElementsByTagName('title')->item(0)->nodeValue, 'link' => $node->getElementsByTagName('link')->item(0)->nodeValue, 'pubDate' => $node->getElementsByTagName('pubDate')->item(0)->nodeValue, 'description' => $node->getElementsByTagName('description')->item(0)->nodeValue, 'content' => $node->getElementsByTagName('encoded')->item(0)->nodeValue ); array_push($feed, $item); } echo '<ul class="haberlistesi h4">'; foreach($feed as $p){ echo '<li>'; echo '<img width="18" src="'.base_url().'img/product.gif" > <a href="'.$p["link"].'" title="'.$p["title"].'" alt="'.$p["title"].'"> '.$p["title"].' </a>'; echo '</li>'; } echo '</ul>'; ?>