
Untitled
By: a guest on
Apr 3rd, 2012 | syntax:
PHP | size: 0.26 KB | hits: 64 | expires: Never
<?php if (!empty($items)): ?>
<ul>
<?php foreach ($items as $item): ?>
<li><a href="<?php print $item['attr']['href']; ?>" title="<?php print $item['attr']['title']; ?>"><?php print $item['value']; ?></a></li>
<?php endforeach ?>
</ul>
<?php endif ?>