Created
March 30, 2011 14:56
-
-
Save worenga/894551 to your computer and use it in GitHub Desktop.
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 if ($items): ?> | |
<?php foreach ($items as $item): ?> | |
* <?php echo $item ?> | |
<?php endforeach; ?> | |
<?php else: ?> | |
No item has been found. | |
<?php endif; ?> |
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 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