Advertisement
chrisenoch

header.html

Dec 8th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <?php # Script 18.1 - header.html
  2. // This page begins the HTML header for the site.
  3.  
  4. // Start output buffering:
  5. //ob_start();
  6.  
  7. // Initialize a session:
  8. session_start();
  9.  
  10. // Check for a $page_title value:
  11. if (!isset($page_title)) {
  12. $page_title = 'User Registration';
  13. }
  14. ?>
  15. <!doctype html>
  16. <html lang="en">
  17. <head>
  18. <meta charset="utf-8">
  19. <title><?php echo $page_title; ?></title>
  20. <link rel="stylesheet" href="includes/layout.css">
  21. </head>
  22. <body>
  23. <div id="Header">User Registration</div>
  24. <div id="Content">
  25. <!-- End of Header -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement