Here's an example using your RSS link:
PHP Code:
<?php
// rss page -
$feed_url = "http://hauserdesigngroup.com/wordpress/feed/";
// INITIATE CURL.
$curl = curl_init();
// CURL SETTINGS.
curl_setopt($curl, CURLOPT_URL,"$feed_url");
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 0);
// GRAB THE XML FILE.
$xmlFile = curl_exec($curl);
curl_close($curl);
// SET UP XML OBJECT.
$xml = simplexml_load_string($xmlFile);
// DISPLAY ONLY 5
$count=5;
foreach ($xml->channel->item as $item) {
if($count > 0){
// In case they have non-closed italics or bold, etc ...
echo"</i></b></u></a>\n";
// Remove strange characters that cannot be defined ...
$desc = preg_replace('/[^\x20-\x7F]+/', '', $item->description);
$title = preg_replace('/[^\x20-\x7F]+/', '', $item->title);
echo"
<div style='font-family:arial; font-size:.8em;'>
<b>".$title."</b><br />".
$desc." <br />
Add your own read more link ... <a href='{$item->guid}'>read more</a>
<br /><br />
</div>
";
}
$count--;
}
?>