$menu=<<<_XML_
What's For Dinner
http://example.com/
choices
Feet
http://example.com
test
_XML_;
$xml = simplexml_load_string($menu);
foreach ($xml->channel->item as $item) {
print "Title: " . $item->title . "\n";
}
?>