<?php
    $xml 
simplexml_load_file(dirname(__FILE__) . '/thedata.xml');
    
// ok we're done.

    
$messages $xml->item;
    foreach (
$messages as $msg) {
        
// $msg['id'] will access the 'id' attribute
        
echo "Title: <a href='{$msg->link}'>{$msg->title}</a><br />Body: {$msg->description}<hr />";
    }
?>
Output
Title: Re: my dog has no nose
Body: Have you looked under it's tail?
Title: Air Conditioner Broke
Body: I am melting..... HELP!!!