forked from science-ation/science-ation
whoops missed this file
This commit is contained in:
parent
421e7f43d9
commit
5dcf403421
16
admin/reports.php
Normal file
16
admin/reports.php
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
<?
|
||||||
|
require("../common.inc.php");
|
||||||
|
send_header("Administration - Reports");
|
||||||
|
echo "<a href=\"index.php\"><< ".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> ";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
send_footer();
|
||||||
|
?>
|
Loading…
Reference in New Issue
Block a user