Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. <?php
  2. // Get current page file name
  3. $page = basename($_SERVER["PHP_SELF"]);
  4. ?>
  5. <?php include "templates/header.php"; ?>
  6. <?php include "templates/footer.php"; ?>
  7.  
  8. <h1>A Library</h1>
  9. <div id="navigation">
  10. <ul>
  11. <li><a href="index.php" <?php if ($page == "index.php") echo 'class="current"' ?>>Products</a></li>
  12. <li><a href="resume.php" <?php if ($page == "resume.php") echo 'class="current"' ?>>Resume</a></li>
  13. <li><a href="photography.php" <?php if ($page == "photography.php") echo 'class="current"' ?>>Photography</a></li>
  14. <li><a href="about.php" <?php if ($page == "about.php") echo 'class="current"' ?>>About</a></li>
  15. <li><a href="contact.php" <?php if ($page == "contact.php") echo 'class="current"' ?>>Contact</a></li>
  16. </ul>
  17. </div>
  18. </body>
  19. </html>
  20.  
  21. </body>
  22. </html>
  23.  
  24. #navigation ul li a.current {
  25. background-color: #FFF;
  26. border-bottom: 1px solid #FFF;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement