Skip to content

Instantly share code, notes, and snippets.

@fredericorecsky
Created February 4, 2012 21:18
Show Gist options
  • Save fredericorecsky/1740192 to your computer and use it in GitHub Desktop.
Save fredericorecsky/1740192 to your computer and use it in GitHub Desktop.
php foreach for "templating"
<html>
<body>
<div class="message">
<h4>Title Template like</h4>
<ul>
<?php foreach ( $all as $item): ?>
<li>
<a href="<?php echo $item['url']; ?>">
<?php echo $item['url']; ?>
</a>
</li>
<?php endforeach; ?>
</ul>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment