1.	<?php // Script 8.14 - welcome.php
2.	/* This is the welcome page. The user is redirected here
3.	after they successfully log in. */
4.	
5.	// Set the page title and include the header file:
6.	define('TITLE', 'Welcome to the Elliott Smith Fan Club!');
7.	require('templates/header.html'); 
8.	
9.	// Leave the PHP section to display lots of HTML:
10.	?>
11.	
12.	<h1>Welcome to the Elliott Smith Fan Club!</h1>
13.	<p>You've successfully logged in and can now take advantage of everything the site has to offer.</p>
14.	<p>Here's a whole lotta text. Here's a whole lotta text. Here's a whole lotta text. Here's a whole lotta text. Here's a whole lotta text. Here's a whole lotta text. Here's a whole lotta text. Here's a whole lotta text. Here's a whole lotta text. Here's a whole lotta text. </p>
15.	
16.	<?php require('templates/footer.html'); // Need the footer. ?>