* Copyright (C) 2005-2006 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. */ ?> 'committee_main.php', 'Administration' => 'admin/index.php', 'Participant Registration' => 'admin/registration.php' ) ); echo '
'; if (get_value_from_array($_POST, 'changed')) { $numchanged = 0; foreach ($_POST['changed'] as $id => $val) { if ($val == 1) { $numchanged++; $webfirst = get_value_from_2d_array($_POST, 'webfirst', $id) == 'yes' ? 'yes' : 'no'; $weblast = get_value_from_2d_array($_POST, 'weblast', $id) == 'yes' ? 'yes' : 'no'; $webphoto = get_value_from_2d_array($_POST, 'webphoto', $id) == 'yes' ? 'yes' : 'no'; $stmt = $pdo->prepare("UPDATE students SET webfirst='$webfirst', weblast='$weblast', webphoto='$webphoto' WHERE id='$id'"); $stmt->execute(); } } if ($numchanged == 1) { echo happy(i18n('1 student record updated')); } else if ($numchanged > 1) { echo happy(i18n('%1 student records updated', array($numchanged))); } else { echo error(i18n('No student records where changed')); } } ?> prepare("SELECT students.firstname, students.lastname, students.id, projects.projectnumber, students.webfirst, students.weblast, students.webphoto FROM students, registrations, projects WHERE students.registrations_id=registrations.id AND\t( registrations.status = 'complete' OR registrations.status='paymentpending' ) AND\tprojects.registrations_id=registrations.id AND \tregistrations.year='" . $config['FAIRYEAR'] . "' AND \tprojects.year='" . $config['FAIRYEAR'] . "' AND \tstudents.year='" . $config['FAIRYEAR'] . "' ORDER BY projectnumber "); $sq->execute(); show_pdo_errors_if_any($pdo); echo '
'; echo ''; echo ''; echo ' '; echo ' '; echo ' '; echo ' '; echo ' '; echo ''; while ($r = $sq->fetch(PDO::FETCH_OBJ)) { echo ''; echo ""; echo ""; $ch = $r->webfirst == 'yes' ? 'checked="checked"' : ''; echo ""; $ch = $r->weblast == 'yes' ? 'checked="checked"' : ''; echo ""; $ch = $r->webphoto == 'yes' ? 'checked="checked"' : ''; echo ""; echo ''; } echo '
' . i18n('Proj #') . '' . i18n('Student Name') . '' . i18n('First') . '' . i18n('Last') . '' . i18n('Photo') . '
$r->projectnumberid\" type=\"hidden\" name=\"changed[$r->id]\" value=\"0\">$r->firstname $r->lastnameid]\" value=\"yes\" onchange=\"changed($r->id)\">id]\" value=\"yes\" onchange=\"changed($r->id)\">id]\" value=\"yes\" onchange=\"changed($r->id)\">
'; echo ''; echo '
'; send_footer(); ?>