Guest User

Untitled

a guest
Jul 21st, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <?php
  2. $x=1;
  3. foreach($aMenu as $aNav)
  4. {
  5. count($aMenu) == $x ? $nclass = ' class="last"' : $nclass = '';
  6. $postid == $aNav[id] ? $aclass = ' class="active"' : $aclass = '';
  7. isset($aNav[target]) ? $target = ' target="'.$aNav[target].'"' : $target = '';
  8. echo '<li'.$aclass.'><a href="'.$aNav[link].'"'.$nclass.$target.'>'.$aNav[desc].'</a></li>';
  9. $x++;
  10. }
  11. ?>
Add Comment
Please, Sign In to add comment