It's really quite simple. I'd like to $item->addChild
('media:thumbnail')
but it's not behaving as it removes 'media:'...
I am wondering how the following can be accomplished using SimpleXMLElement.
$thumbnail=$item->addChild('media:thumbnail');
$thumbnail->addAttribute('url', $row['url']);
$thumbnail->addAttribute('height', '81');
$thumbnail->addAttribute('width', '144');
//Output <media:thumbnail url="http://myurl.com/my.jpg" width="144" height="81" />