Guest User

Untitled

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