Skip to content

Instantly share code, notes, and snippets.

@bschwartz757
Created November 23, 2015 20:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bschwartz757/5ef619075bda0e0991f3 to your computer and use it in GitHub Desktop.
Save bschwartz757/5ef619075bda0e0991f3 to your computer and use it in GitHub Desktop.
CodeIgniter Rss Snippet for Annotation
<?php
$this->load->view($this->config->item('theme') . 'header');
?>
<div id="main">
<?php foreach ($rss->channel->item as $rss_item): ?>
<h3><?php echo $rss_item->title ?></h3>
<div>
<?php echo $rss_item->description ?>
</div>
<p><a href="<?php echo $rss_item->link ?>">View Article</a></p>
<?php endforeach ?>
</div><!-- end main -->
<?php
$this->load->view($this->config->item('theme') . 'footer');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment