Newer
Older
Discussion_Papers / Website / menu.htm
nstanger on 1 May 2009 268 bytes - Removed obsolete commented HTML.
<hr>
<p class="menu">
<?php
// year selection menu
echo " | ";
for ($i = $current_year; $i > 1992 ; $i--)
{
	if ($i != $display_year)
	{
		echo "<a href='dpsall.htm?year=$i'>$i</a> | ";
	}
	else
	{
		echo "<strong>$i</strong> | ";
	}
}
?>
</p>
<hr>