by Karen Hertzberg on Dec 17, 2012
Voting will close on Sunday, January 6th, and we'll announce our results on Monday, January 7th. You may return once per hour to help your game rise to the top. Rally your friends and champion the cause!
function _most_anticipated_print_results($cid) {
$nid = 246999;
echo "
"; $sql = "SELECT data, COUNT(data) AS count " .
"FROM webform_submitted_data " .
"WHERE nid = %d AND cid = %d AND data != ''" .
"GROUP BY data " .
"ORDER BY count DESC " .
"LIMIT 3";
$results = db_query($sql, $nid, $cid);
while ($result = db_fetch_object($results)) {
$name = isset($names[$result->data]) ? $names[$result->data] : $result->data;
echo "
";
}
echo "
";
}
echo "Top Three Results:
";
_most_anticipated_print_results(2);
?>