Guest User

Untitled

a guest
Jul 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. <?php
  2. function c($files) {
  3. $active = false;
  4. $basename = basename($_SERVER['PHP_SELF']);
  5. $basename != '' || $basename = 'index.php';
  6. $files = explode(' ', $files);
  7. foreach ($files as $file) {
  8. $active = $active || ($basename == $file);
  9. }
  10. return $active ? ' class="active"' : '';
  11. }
  12. $projects = 'projects.php projects2.php';
  13. ?>
  14. <div id="header">
  15. <ul id="nav">
  16. <li><a href="index.php"<?=c('index.php');?>>HOME</a></li>
  17. <li><a href="about.php"<?=c('about.php');?>>ABOUT</a></li>
  18. <li><a href="projects.php"<?=c($projects);?>>PROJECTS</a></li>
  19. <li><a href="irrigation.php"<?=c('irrigation.php');?>>IRRIGATION</a></li>
  20. <li><a href="news.php"<?=c('news.php');?>>NEWS</a></li>
  21. <li id="last"><a href="contact.php"<?=c('contact.php');?>>CONTACT</a></li>
  22. </ul>
  23. <div id="logo"><a href="index.php"><img src="img/botanical-visions-inc.png" width="213" height="111" alt="Botanical Visions Inc."/></a></div>
  24. </div>
Add Comment
Please, Sign In to add comment