query("SELECT DISTINCT(year) FROM winners ORDER BY year DESC"); while($r = $q->fetch_assoc()) { $year = (int)$r['year']; /* Don't print anything for the current year unless we're on the day after the fair */ if($year > $last_year_to_show) continue; ?>

'); } } } else { ?>

Awards

$last_year_to_show) { /* Shouldn't be able to get here unless someone is fudging with URLs and manually inserting dates. * I bet students will try to do this. */ print("Crystal Ball Error: Go to the award ceremony to find out who wins.
"); exit(); } /* Load the winners list for the specific type */ $q = $mysqli->query("SELECT `awards`.`name` AS award_name, `awards`.`s_desc`, `award_prizes`.`name` AS prize_name, `projects`.`number`,`projects`.`title` FROM winners LEFT JOIN award_prizes ON `winners`.`award_prize_id`=`award_prizes`.`id` LEFT JOIN awards on `award_prizes`.`award_id` = `awards`.`id` LEFT JOIN projects on `winners`.`pid`=`projects`.`pid` WHERE `awards`.`type`='$type' AND `winners`.`year`='$year' AND `awards`.`include_in_script`='1' ORDER BY `awards`.`ord`, `award_prizes`.`ord`, `projects`.`number_sort` "); print($mysqli->error); $current_award = NULL; $current_prize = NULL; $w = array(); $desc = array(); while($r = $q->fetch_assoc()) { if($r['award_name'] != $current_award) { $current_award = $r['award_name']; $w[$current_award] = array(); $desc[$current_award] = $r['s_desc']; $current_prize = NULL; } if($r['prize_name'] != $current_prize ) { $current_prize = $r['prize_name']; $w[$current_award][$current_prize] = array(); } $w[$current_award][$current_prize][] = array('number' => $r['number'], 'title' => $r['title']); } foreach($w as $award_name => $prizes) { ?>

-