I am trying to extract the price from the iTunes RSS feed using SimplePie and it is returning an empty variable.\[code\]$feedurl='http://itunes.apple.com/us/rss/toppaidapplications/limit=10/xml';$feed = new SimplePie();$feed->set_feed_url($feedurl);$feed->init();$feed->handle_content_type();foreach ($feed->get_items() as $item){$pricing= $item->get_item_tags(SIMPLEPIE_NAMESPACE_ITUNES, 'price');echo $pricing;}\[/code\]But this returns nothing (blank). I am trying to extract the price element from the feed.What am I doing wrong please?MY OWN SOLUTION:\[code\]foreach ($feed->get_items() as $item){$pricing= $item->get_item_tags('http://itunes.apple.com/rss', 'price');print_r($pricing);}\[/code\]