Skip to content

Instantly share code, notes, and snippets.

@ryarwood
Created November 6, 2012 01:54
Show Gist options
  • Save ryarwood/4021997 to your computer and use it in GitHub Desktop.
Save ryarwood/4021997 to your computer and use it in GitHub Desktop.
Simple XML Example
<?php
$rss = file_get_contents( "http://feeds.feedburner.com/aliasmx?format=xml" );
$xml = new SimpleXMLElement( $rss );
if( $count = 8 ):
?>
<?php foreach( $xml->channel->item as $item ): ?>
<?php $description = trim((string)$item->description); ?>
<a href="<?php echo substr((string)$description, 10, strlen((string)$description)-12); ?>" rel="shadowbox[instagram]"><?php echo $item->description; ?></a>
<?php endforeach; ?>
<?php else: ?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment