$menu=<<<_XML_
What's For Dinner
http://example.com/
choices
Feet
http://example.com
test
_XML_;
$xml = simplexml_load_string($menu);
print "The {$xml->channel->title} channel is available at {$xml->channel->link}. ";
print "The description is \"{$xml->channel->description}\"";
?>