forked from science-ation/science-ation
17 lines
525 B
PHP
17 lines
525 B
PHP
<?
|
|
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();
|
|
?>
|