children('http://www.w3.org/2005/Atom');
$entries = $children->entry;
foreach ($entries as $entry) {
$details = $entry->children('http://www.w3.org/2005/Atom');
// var_dump($details);
echo '' . $details->title . '
';
echo date('Y/m/d', strtotime($details->updated));
echo $details->content;
echo '
';
}
?>