How can I put blog feeds on my website.
I went to http://www.feedforall.com and downloaded the
free php file which turns your RSS feeds into HTML so
you can put it on your website.
The script works great, but I have to copy and past this long URL
into my browswer in order for me to see my updated blog content.
This is the problem. I want to have other people put my blog
content on their site and I could use:
JAVASCRIPT
<script language="JavaScript" src="http://www.MYDOMAINNAME.com/rss2html.php?XMLFILE=MYDOMAINNAME/wp-rss.php&TEMPLATE=http://www.MYDOMAINNAME/sample-template.html&MAXITEMS=15"></script>
or this:
FRAMES
<iframe src="http://www.MYDOMAINNAME.com/rss2html.php?XMLFILE=MYDOMAINNAME/wp-rss.php&TEMPLATE=http://www.MYDOMAINNAME/sample-template.html&MAXITEMS=15"></iframe>
to put it on my site, but search engines do not spider
frames and javascript.
I was told that I could even use this:
PHP
<?php
include 'http://www.MYDOMAINNAME.com/rss2html.php?XMLFILE=MYDOMAINNAME/wp-rss.php&TEMPLATE=http://www.MYDOMAINNAME/sample-template.html&MAXITEMS=15';
?>
But not everyone has a server that uses php.
How can I have other people put my blog content on their website
without the use of PHP, iFrames or JavaScript.
Can anyone help?