View Source of articles/index.php
In the interest of open source, and in the interest of keeping Mr. Webmaster honest, here is the PHP source of articles/index.php. (This encourages him to write clean, easy-to-understand code...well, relatively clean and easy-to-understand, that is.) If you become interested in PHP, you can read more about it at PHP: Hypertext Preprocessor. You will also see plenty of HTML code, which is what makes the World Wide Web go 'round. You can read more about HTML (and CSS, another technology used on this site) here, at the official page of the very official World Wide Web Consortium (W3C). Anyway, enough rambling, here's the code!
<?php include("../header1.php"); ?>
<?php $THIS_FILE = "articles/index.php"; ?>
<title>Jeff T. - Articles</title>
<?php include("../header2.php"); ?>
<?php include("localheader.php"); ?>
<h1>Articles</h1>
<p>As inspiration strikes, I will write articles on a variety of topics. Perhaps I will want to impart some computer savviness to the more technologically inclined. Or perhaps there's a soapbox that looks particularly climbable. Or, maybe I'll turn a presentation into a written form. Whatever; it will be posted here.</p>
<table>
<tr><th>Date</th><th>Title</th></tr>
<tr><td>2007-11-30</td><td><a href="perl-cli.php">Using Perl on the Command-Line</a></td></tr>
</table>
<?php include("../footer.php"); ?>