<?php
/*====================================================================================================
======================================================================================================
The Dictionary Maker (TDM) is released under the GNU General Public License (GPL), which is an
open-source license that means anyone is free to use, modify, and
redistribute it, with a few restrictions. That means that the following
text should be included as a comment at the top of every source file:
========================================================================
Copyright Daniel Herman 2002
This file is part of TDM.
TDM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
TDM is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Beehive; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
USA
========================================================================
============================================================================================*/
require("./config.php");
$alphabet = array('A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'Other');
foreach ( $alphabet as $link ) {
echo "<font face=$style_font_face color=$colour_font><A href=\"./show_letter.php?letter=$link\">$link</a></font> ";
}
?>