Created
November 23, 2015 20:46
-
-
Save bschwartz757/5ef619075bda0e0991f3 to your computer and use it in GitHub Desktop.
CodeIgniter Rss Snippet for Annotation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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