1.	<?php // Script 8.5 - albums.php
2.	/* This page lists Elliott Smith's discography. */
3.	
4.	// Set the page title and include the header file:
5.	define ('TITLE', 'Records by Elliott Smith');
6.	require('templates/header.html');
7.	
8.	// Leave the PHP section to display lots of HTML:
9.	?>
10.	
11.	<h1>Elliott Smith's Albums</h1>
12.	<p><ul>
13.		<li>Roman Candle</li>
14.		<li>Elliott Smith</li>
15.		<li>Either/Or</li>
16.		<li>XO</li>
17.		<li>Figure 8</li>
18.		<li>From a Basement On the Hill</li>
19.		<li>New Moon</li>
20.	</ul></p>
21.	
22.	<?php // Return to PHP and include the footer:
23.	require('templates/footer.html');
24.	?>