Advertisement
Guest User

Untitled

a guest
Apr 3rd, 2012
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. <?php if (!empty($items)): ?>
  2.   <ul>
  3.   <?php foreach ($items as $item): ?>
  4.     <li><a href="<?php print $item['attr']['href']; ?>" title="<?php print $item['attr']['title']; ?>"><?php print $item['value']; ?></a></li>
  5.   <?php endforeach ?>
  6.   </ul>
  7. <?php endif ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement