Skip to content

Instantly share code, notes, and snippets.

@worenga
Created March 30, 2011 14:56
Show Gist options
  • Save worenga/894551 to your computer and use it in GitHub Desktop.
Save worenga/894551 to your computer and use it in GitHub Desktop.
<?php if ($items): ?>
<?php foreach ($items as $item): ?>
* <?php echo $item ?>
<?php endforeach; ?>
<?php else: ?>
No item has been found.
<?php endif; ?>
<?php if ($items): ?>
<?php foreach ($items as $item): ?>
* <?php echo htmlspecialchars($item, ENT_QUOTES, 'UTF-8') ?>
<?php endforeach; ?>
<?php else: ?>
No item has been found.
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment