<media:link>http://www.some-url.com/</media:link>
I'm using SimpleXML and can easily grab things like <title>Some title</title>
Current code
foreach($RSS_DOC->channel->item as $item) {
$title = $item->title;
}
But not sure how to do it for items with a colon. it gives a fatal error.






