$xml = simplexml_load_file('rss.xml'); foreach($xml->channel->item as $item) { echo $item->title.' - '.$item->description.' - '.$item->image.'<br>'; }