How to retrieve these feeds and display them on my web site?

Try This:

<?php

$file = file_get_contents("http://www.yourfeedpage.com/feed/");
$xml = new SimpleXMLElement($file);

foreach($xml->channel->item as $feed){
echo $feed->title.'<br>';
}
?>
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.