If I wanted to set up an RSS feed for my journal on a personal site (say, my UCC public-html area*), how hard would it be and what would I use**? What if I wanted to create a parallel site that aggregated everything I like to read in one place? Could that site also access locked LJ posts with appropriate authentication efforts? Is there a pre-
(
Read more... )
require_once('magpierss/rss_fetch.inc');
$rss=fetch_rss("http://theducks.livejournal.com/data/rss");
foreach( $rss->items as $item) {
$i++;
if ($i < 5) {
if ($i > 1) { echo ""; }
echo "$item[pubdate] - $item[title]
$item[summary]
Comment on this
";
}
}
echo "Archives";
?>
Reply
Reply
Reply
Reply
Reply
Wouldn't want to miss out on any clueful ramblings.
Reply
http://magpierss.sourceforge.net/
Reply
Leave a comment