Currently the "Add New Game" form only displays 3 years to choose from. Is there a way to change it so that it shows more than 3 years (eg 2005 – 2011)? Thanks.
In admin_files/add_score.php you'll see this code:
<select name="year[]">
You can hardcode the year options below that code or do some sort of foreach loop to output a certain number of years. Something similar would have to be done in admin_files/edit_score.php as well.
I had tried hard-coding the years I needed before posting this question, but it seems as though the years are based off a Unix Timestamp. When I hard-coded 2005, 2006, 2007 and 2008 in, the years showed up as 2001 when viewed from the site /admin area.