Advertisement
Guest User

Untitled

a guest
Oct 4th, 2012
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1.  <?php
  2.  // closing php tag is omitted  to avoid "headers already sent" error.
  3.  $title = basename($_SERVER['SCRIPT_FILENAME'], '.php');
  4. $title = ucfirst($title);
  5. $title = str_replace('_', ' ', $title);
  6. // do a case insensitive comparison of $title
  7. //to convert a string to uppercase, use strtoupper()
  8. if (strtolower($title) == 'index')
  9. { $title = 'home'; }
  10. $title = ucwords($title);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement