Quote:
Originally Posted by Big D Forbairt, thank you very much for that - I have it working!
Just a couple of quickies:
1. Can these feeds be styled with css?
2. Presumably the feed source can simply be changed by changing the URL? |
Code:
echo "<a href=$url>$title</a><br>$description</li><br>\n";
there you have your link urls so yes you just have to give them a class or put the whole thing in a container div ? ... for example
Code:
<div class="rssFeed">
...
...
</div>
then its just down to you to style the output
I'd almost recommend you remove the $url bit from your include file
then when ever you want to include a
rss feed
Code:
<?PHP
$url = "http://www.myurlformyrssfeed.com/my.rss";
include "filename.php"
?>