diff --git a/admin/reports.php b/admin/reports.php
new file mode 100644
index 0000000..6fd884c
--- /dev/null
+++ b/admin/reports.php
@@ -0,0 +1,16 @@
+
+ require("../common.inc.php");
+ send_header("Administration - Reports");
+ echo "<< ".i18n("Back to Administration")."
";
+ echo "
";
+ 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 "id\">$catr->category ";
+}
+
+
+ send_footer();
+?>