* Copyright (C) 2005 James Grant * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public * License as published by the Free Software Foundation, version 2. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ ?> prepare("DELETE FROM judges_specialaward_sel WHERE users_id=?"); $stmt->execute([$u['id']]); if (array_key_exists('spaward', $_POST)) { foreach ($_POST['spaward'] AS $aid) { $stmt = $pdo->prepare("INSERT INTO judges_specialaward_sel (users_id, award_awards_id) VALUES (?,?)"); $stmt->execute([$u['id'], $aid]); } } happy_('Special Award preferences successfully saved'); exit; } if ($_SESSION['embed'] == true) { display_messages(); echo '

' . i18n('Special Awards') . '

'; echo '
'; } else { // send the header send_header('Special Awards', array('Judge Registration' => 'judge_main.php')); } ?>
'; echo '
'; $q = $pdo->prepare("SELECT * FROM judges_specialaward_sel WHERE users_id=?"); $q->execute([$u['id']]); $spawards = array(); while ($r = $q->fetch(PDO::FETCH_OBJ)) $spawards[] = $r->award_awards_id; echo "\n"; // query all of the awards $q = $pdo->prepare("SELECT award_awards.id, award_awards.name, award_awards.criteria, sponsors.organization FROM award_awards, award_types, sponsors WHERE award_types.id=award_awards.award_types_id\t\t AND sponsors.id=award_awards.sponsors_id\t\t AND (award_types.type='Special' OR award_types.type='Other') AND award_awards.year=? AND award_types.year=? ORDER BY name"); $q->execute([$config['FAIRYEAR'], $config['FAIRYEAR']]); show_pdo_errors_if_any($pdo); while ($r = $q->fetch(PDO::FETCH_OBJ)) { ?>
id, $spawards)) ? 'checked="checked"' : ''; ?> type="checkbox" name="spaward[]" value="id ?>" /> name ?> (organization ?>)
criteria ?>