whoops missed this file

This commit is contained in:
james 2005-01-21 16:13:08 +00:00
parent 421e7f43d9
commit 5dcf403421

16
admin/reports.php Normal file
View File

@ -0,0 +1,16 @@
<?
require("../common.inc.php");
send_header("Administration - Reports");
echo "<a href=\"index.php\">&lt;&lt; ".i18n("Back to Administration")."</a><br />";
echo "<br />";
echo i18n("Day of Fair Registration/Checkin Forms").": ";
//lets split this up by age category,
$catq=mysql_query("SELECT * FROM projectcategories WHERE year='".$config['FAIRYEAR']."' ORDER BY id");
while($catr=mysql_fetch_object($catq))
{
echo "<a href=\"reports_checkin.php?cat=$catr->id\">$catr->category</a> &nbsp; ";
}
send_footer();
?>