Guest User

Untitled

a guest
Jul 22nd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php
  2.  
  3. $page_name = basename ( $_SERVER['PHP_SELF'] );
  4.  
  5. switch ($page_name) {
  6. case "photos.php":
  7. $title = "Photos Title";
  8. break;
  9. case "news.php":
  10. $title = "News Title";
  11. break;
  12. case "contact.php":
  13. $title = "Contact Title";
  14. break;
  15. }
  16. ?>
  17.  
  18. <title><?= $title ?></title>
Add Comment
Please, Sign In to add comment