Skip to content

Instantly share code, notes, and snippets.

@hiromitz
Created November 17, 2010 11:01
Show Gist options
  • Save hiromitz/703263 to your computer and use it in GitHub Desktop.
Save hiromitz/703263 to your computer and use it in GitHub Desktop.
Simple RSS Reader
<?php
/**
* Simple RSS Reader
*/
$url = 'http://hiromitz.jimdo.com/rss/blog';
$rss = @simplexml_load_file($url);
foreach($rss->channel->item as $item) {
echo "<h2>". $item->title. "</h2>";
echo "<div>". $item->description. "</div>";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment