Kısaca şöyle yapabilirsin..

header('Content-Type: text/html; charset=utf-8');
$xml = simplexml_load_file('http://www.doviz.com/feed/altin.php');

$a = $xml->channel->item[5]->title;
$a1 = $xml->channel->item[5]->description;

$b = $xml->channel->item[6]->title;
$b1 = $xml->channel->item[6]->description;

echo $a.'<br />';
echo $a1.'<br />';

echo $b.'<br />';
echo $b1.'<br />';