View Source of index.php
In the interest of open source, and in the interest of keeping Mr. Webmaster honest, here is the PHP source of 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 = "index.php"; ?>
<title>COMP 524: Programming Language Concepts, Spring 2008</title>
<link rel="stylesheet" href="local.css" type="text/css" charset="iso-8859-1" title="Default" />
<?php include("header2.php"); ?>
<?php include("localheader.php"); ?>
<h1>COMP 524: Programming Language Concepts</h1>
<h2>Spring, 2008</h2>
<p>Welcome to the Spring 2008 Programming Language Concepts course webpage.</p>
<h3>News</h3>
<dl>
<dt>Wed, Apr 30 - 3:13pm</dt>
<dd>The <a href="exercise4.pl">solution to Exercise 4</a> is now available.</dd>
<dt>Tue, Apr 29 - 6:48pm</dt>
<dd>Solutions for <a href="program2.php">Program 2</a> are now available: <a href="turtle.py">turtle.py</a> and <a href="lsystem.py">lsystem.py</a>.</dd>
<dt>Tue, Apr 15 - 10:30pm</dt>
<dd><a href="exercise4.php">Exercise 4</a> is now ready for your perusal.</dd>
<dt>Wed, Apr 9 - 3:00pm</dt>
<dd>I've posted the mid-term exams online. View exam 1 (<a href="test1.pdf">pdf</a>, <a href="test1.doc">doc</a>, <a href="test1.rtf">rtf</a>) or exam 2 (<a href="test2.pdf">pdf</a>, <a href="test2.doc">doc</a>, <a href="test2.rtf">rtf</a>).</dd>
<dt>Wed, Apr 9 - 1:29pm</dt>
<dd><a href="exercise3.scm">Solutions to Exercise 3</a> are now available.</dd>
<dt>Tue, Apr 1 - 11:46pm</dt>
<dd><a href="program2.php">Program 2</a> is now ready for your perusal.</dd>
<dt>Tue, Apr 1 - 5:38pm</dt>
<dd><a href="exercise2.scm">Solutions to Exercise 2</a> are now available.</dd>
<dt>Tue, Mar 18 - 11:43pm</dt>
<dd><a href="exercise3.php">Exercise 3</a> is now ready for your perusal.</dd>
<dt>Wed, Mar 5 - 3:46pm</dt>
<dd><a href="program1.py">Solutions to Program 1</a> are now available.</dd>
<dt>Fri, Feb 22 - 12:48pm</dt>
<dd><a href="exercise2.py">Exercise 2</a> is ready for your perusal.</dd>
<dt>Wed, Jan 30 - 11:55pm</dt>
<dd><a href="exercise1.py">Solutions to Exercise 1</a> are now available.</dd>
<dt>Tue, Jan 29 - 11:54pm</dt>
<dd><a href="program1.php">Program 1</a> is ready for your perusal.</dd>
<dt>Wed, Jan 16 - 11:47pm</dt>
<dd>I changed the notes from raw text to a web page, and created a <a href="lectures.php">Lectures</a> page linked to them all. I hope they're a little easier to read now.</dd>
<dt>Tue, Jan 15 - 11:12pm</dt>
<dd>I have added my notes for the first two lectures. View them by clicking on the dates in the <a href="schedule.php">schedule</a>. They're raw, but detailed. I hope they will be of some use.</dd>
<dt>Mon, Jan 14 - 7:01pm</dt>
<dd><a href="exercise1.php">Exercise 1</a> is ready for your perusal.</dd>
<dt>Mon, Jan 14 - 6:58pm</dt>
<dd>A rough <a href="schedule.php">schedule</a> for the semester has been posted.</dd>
<dt>Mon, Jan 14 - 5:38pm</dt>
<dd>Mailing list created. Check out the <a href="https://fafnir.cs.unc.edu/mailman/listinfo/comp524-s08">list info page</a>. If you are in this course and have not received an email about this, you should contact me.</dd>
<dt>Wed, Jan 9 - 2:38pm</dt>
<dd>Website launched. Check out the <a href="syllabus.php">syllabus</a>.</dd>
</dl>
<?php include("footer.php"); ?>

