diff --git a/admin/communication.php b/admin/communication.php
index 0bff34c0..23e746b6 100644
--- a/admin/communication.php
+++ b/admin/communication.php
@@ -686,17 +686,17 @@ if (get_value_from_array($_GET, 'action') == 'sendqueue') {
$fcid = intval($_POST['fundraising_campaigns_id']);
$emailid = intval($_POST['emails_id']);
- $fcq = $pdo->prepare("SELECT * FROM fundraising_campaigns WHERE id='$fcid'");
- $fcq->execute();
+ $fcq = $pdo->prepare("SELECT * FROM fundraising_campaigns WHERE id=?");
+ $fcq->execute([$fcid]);
$fc = $fcq->fetch(PDO::FETCH_OBJ);
- $emailq = $pdo->prepare("SELECT * FROM emails WHERE id='$emailid'");
- $emailq->execute();
+ $emailq = $pdo->prepare("SELECT * FROM emails WHERE id=?");
+ $emailq->execute([$emailid]);
$email = $emailq->fetch(PDO::FETCH_OBJ);
$recipq = $pdo->prepare("SELECT * FROM fundraising_campaigns_users_link
- WHERE fundraising_campaigns_id='$fcid'");
- $recipq->execute();
+ WHERE fundraising_campaigns_id=?");
+ $recipq->execute([$fcid]);
show_pdo_errors_if_any($pdo);
$numtotal = $recipq->rowCount();
@@ -727,8 +727,8 @@ if (get_value_from_array($_GET, 'action') == 'sendqueue') {
// we only send school access codes to science heads or principals
- $acq = $pdo->prepare("SELECT accesscode FROM schools WHERE (sciencehead_uid='{$u['uid']}' OR principal_uid='{$u['uid']}') AND `year`='{$config['FAIRYEAR']}'");
- $acq->execute();
+ $acq = $pdo->prepare("SELECT accesscode FROM schools WHERE (sciencehead_uid=? OR principal_uid=? AND `year`=?");
+ $acq->execute([$u['uid'],$config['FAIRYEAR']]);
$acr = $acq->fetch(PDO::FETCH_OBJ);
$accesscode = $acr->accesscode;
@@ -755,8 +755,8 @@ if (get_value_from_array($_GET, 'action') == 'sendqueue') {
$q->execute();
show_pdo_errors_if_any($pdo);
}
- $q = $pdo->prepare("UPDATE emails SET lastsent=NOW() WHERE id='$emailid'");
- $q->execute();
+ $q = $pdo->prepare("UPDATE emails SET lastsent=NOW() WHERE id=?");
+ $q->execute([$emailid]);
}
echo 'ok';
launchQueue();
@@ -786,16 +786,16 @@ echo '
';
if (get_value_from_array($_GET, 'action') == 'delete' && get_value_from_array($_GET, 'delete')) {
- $q = $pdo->prepare("DELETE FROM emails WHERE id='" . $_GET['delete'] . "' AND `type`='user'");
- $q->execute();
+ $q = $pdo->prepare("DELETE FROM emails WHERE id=? AND `type`='user'");
+ $q->execute([$_GET['delete']]);
echo happy('Email successfully deleted');
}
if (get_value_from_array($_GET, 'action') == 'send' && get_value_from_array($_GET, 'send')) {
show_pdo_errors_if_any($pdo);
- $q = $pdo->prepare("SELECT * FROM emails WHERE id='" . $_GET['send'] . "'");
- $q->execute();
+ $q = $pdo->prepare("SELECT * FROM emails WHERE id=?");
+ $q->execute($_GET['send']);
$r = $q->fetch(PDO::FETCH_OBJ);
@@ -859,8 +859,8 @@ if (get_value_from_array($_GET, 'action') == 'send' && get_value_from_array($_GE
// echo $str;
} else if (get_value_from_array($_POST, 'action') == 'reallysend' && get_value_from_array($_POST, 'reallysend') && get_value_from_array($_POST, 'to')) {
$emailid = intval($_POST['reallysend']);
- $emailq = $pdo->prepare("SELECT * FROM emails WHERE id='$emailid'");
- $emailq->execute();
+ $emailq = $pdo->prepare("SELECT * FROM emails WHERE id=?");
+ $emailq->execute([$emailid]);
$email = $emailq->fetch(PDO::FETCH_OBJ);
$to = $_POST['to'];
@@ -915,8 +915,8 @@ if (get_value_from_array($_GET, 'action') == 'send' && get_value_from_array($_GE
}
if ($u) {
// we only send school access codes to science heads or principals
- $acq = $pdo->prepare("SELECT accesscode FROM schools WHERE (sciencehead_uid='{$u['uid']}' OR principal_uid='{$u['uid']}') AND `year`='{$config['FAIRYEAR']}'");
- $acq->execute();
+ $acq = $pdo->prepare("SELECT accesscode FROM schools WHERE (sciencehead_uid=? OR principal_uid=?) AND `year`=?");
+ $acq->execute([$u['uid'],$u['uid'],$config['FAIRYEAR']]);
show_pdo_errors_if_any($pdo);
$acr = $acq->fetch(PDO::FETCH_OBJ);
$accesscode = $acr->accesscode;
@@ -949,8 +949,8 @@ if (get_value_from_array($_GET, 'action') == 'send' && get_value_from_array($_GE
show_pdo_errors_if_any($pdo);
}
- $q = $pdo->prepare("UPDATE emails SET lastsent=NOW() WHERE id='$emailid'");
- $q->execute();
+ $q = $pdo->prepare("UPDATE emails SET lastsent=NOW() WHERE id=?");
+ $q->execute([$emailid]);
}
launchQueue();
echo '
';
diff --git a/admin/documentdownloader.php b/admin/documentdownloader.php
index 3c5724f0..c69dbb2e 100644
--- a/admin/documentdownloader.php
+++ b/admin/documentdownloader.php
@@ -25,8 +25,8 @@
require ('../common.inc.php');
require_once ('../user.inc.php');
user_auth_required('committee', 'admin');
-$q = $pdo->prepare("SELECT * FROM documents WHERE id='" . $_GET['id'] . "'");
-$q->execute();
+$q = $pdo->prepare("SELECT * FROM documents WHERE id=?");
+$q->execute([$_GET['id']]);
if ($r = $q->fetch(PDO::FETCH_OBJ)) {
header('Content-type: ' . trim(exec("file -bi ../data/documents/$r->filename")));
header('Content-disposition: inline; filename="' . $r->filename . '"');
diff --git a/admin/donations.php b/admin/donations.php
index 98c1353d..c7890f24 100644
--- a/admin/donations.php
+++ b/admin/donations.php
@@ -143,15 +143,15 @@ function refresh_fundraising_table() {
// first, insert any defaults
-$q = $pdo->prepare("SELECT * FROM fundraising WHERE year='" . $config['FAIRYEAR'] . "'");
-$q->execute();
+$q = $pdo->prepare("SELECT * FROM fundraising WHERE year=?");
+$q->execute([$config['FAIRYEAR']]);
if (!$q->rowCount()) {
$q = $pdo->prepare("SELECT * FROM fundraising WHERE year='-1'");
$q->execute();
while ($r = $q->fetch(PDO::FETCH_OBJ)) {
- $q = $pdo->prepare("INSERT INTO fundraising (`type`,`name`,`description`,`system`,`goal`,`year`) VALUES ('$r->type','" . $r->name . "','" . $r->description . "','$r->system','$r->goal','" . $config['FAIRYEAR'] . "')");
- $q->execute();
+ $q = $pdo->prepare("INSERT INTO fundraising (`type`,`name`,`description`,`system`,`goal`,`year`) VALUES (?,?,?,?,?,?)");
+ $q->execute([$r->type,$r->name,$r->description,$r->system,$r->goal,$config['FAIRYEAR']]);
}
}
diff --git a/admin/donors.php b/admin/donors.php
index f83bdba1..80b0e2a7 100644
--- a/admin/donors.php
+++ b/admin/donors.php
@@ -32,8 +32,8 @@ global $pdo;
switch (get_value_from_array($_GET, 'action')) {
case 'organizationinfo_load':
$id = intval($_GET['id']);
- $q = $pdo->prepare("SELECT * FROM sponsors WHERE id='$id'");
- $q->execute();
+ $q = $pdo->prepare("SELECT * FROM sponsors WHERE id=?");
+ $q->execute([$id]);
$ret = $q->fetch(PDO::FETCH_ASSOC);
echo json_encode($ret);
exit;
@@ -43,8 +43,8 @@ switch (get_value_from_array($_GET, 'action')) {
$id = intval($_POST['sponsor_id']);
if ($id == -1) {
echo "INSERT INTO sponsors (year) VALUES ('" . $config['FAIRYEAR'] . "')";
- $q = $pdo->prepare("INSERT INTO sponsors (year) VALUES ('" . $config['FAIRYEAR'] . "')");
- $q->execute();
+ $q = $pdo->prepare("INSERT INTO sponsors (year) VALUES (?)");
+ $q->execute([$config['FAIRYEAR']]);
$id = $pdo->lastInsertId();
echo json_encode(array('id' => $id));
save_activityinfo('Created donor/sponsor', $id, $_SESSION['users_uid'], 'System');
@@ -93,8 +93,8 @@ switch (get_value_from_array($_GET, 'action')) {
echo "
' . format_date($r->datereceived) . " | \n"; echo '' . $sponsor->organization . " | \n"; @@ -258,8 +258,8 @@ case 'managelist': 'mentor' => 'Mentor (not implemented)', ); $campaign_id = intval($_GET['id']); - $q = $pdo->prepare("SELECT * FROM fundraising_campaigns WHERE id='$campaign_id' AND fiscalyear='{$config['FISCALYEAR']}'"); - $q->execute(); + $q = $pdo->prepare("SELECT * FROM fundraising_campaigns WHERE id=? AND fiscalyear=?"); + $q->execute([$campaign_id,$config['FISCALYEAR']]); $campaign = $q->fetch(PDO::FETCH_OBJ); if ($campaign->filterparameters) { echo '||||||
= i18n('Donation Level') ?>: |
- $q = $pdo->prepare("SELECT * FROM fundraising_donor_levels WHERE fiscalyear='{$config['FISCALYEAR']}' ORDER BY min");
- $q->execute();
+ $q = $pdo->prepare("SELECT * FROM fundraising_donor_levels WHERE fiscalyear=? ORDER BY min");
+ $q->execute([$config['FISCALYEAR']]);
while ($r = $q->fetch(PDO::FETCH_OBJ)) {
echo " \n"; } @@ -408,8 +408,8 @@ case 'managelist': case 'manage_tab_communications': $campaign_id = intval($_GET['id']); - $q = $pdo->prepare("SELECT * FROM fundraising_campaigns WHERE id='$campaign_id' AND fiscalyear='{$config['FISCALYEAR']}'"); - $q->execute(); + $q = $pdo->prepare("SELECT * FROM fundraising_campaigns WHERE id=? AND fiscalyear=?"); + $q->execute([$campaign_id,$config['FISCALYEAR']]); if ($r = $q->fetch(PDO::FETCH_OBJ)) { } $communications = array('initial' => 'Initial Communication', @@ -418,8 +418,8 @@ case 'managelist': foreach ($communications as $key => $name) { echo ' ' . i18n($name) . "\n"; // check if they have one in the emails database - $q = $pdo->prepare("SELECT * FROM emails WHERE fundraising_campaigns_id='$campaign_id' AND val='$key'"); - $q->execute(); + $q = $pdo->prepare("SELECT * FROM emails WHERE fundraising_campaigns_id=? AND val=?"); + $q->execute([$campaign_id,$key]); if ($email = $q->fetch(PDO::FETCH_OBJ)) { echo '';
echo "id,$campaign_id)\"> = i18n('Target') ?> | $ |
= i18n('Default Purpose') ?> |
- $fgq = $pdo->prepare("SELECT * FROM fundraising_goals WHERE fiscalyear='{$config['FISCALYEAR']}' ORDER BY name");
- $fgq->execute();
+ $fgq = $pdo->prepare("SELECT * FROM fundraising_goals WHERE fiscalyear=? ORDER BY name");
+ $fgq->execute([$config['FISCALYEAR']]);
echo ' | "; unset($neverlist[$uid]); @@ -155,8 +155,8 @@ foreach ($neverlist AS $uid => $u) { foreach ($pastlist AS $uid => $u) { if ($u['sponsors_id']) { - $q = $pdo->prepare("SELECT * FROM fundraising_donations WHERE status='received' AND sponsors_id='{$u['sponsors_id']}'"); - $q->execute(); + $q = $pdo->prepare("SELECT * FROM fundraising_donations WHERE status='received' AND sponsors_id=?"); + $q->execute([$u['sponsors_id']]); if (!$q->rowCount()) { // echo "removing $uid because they have NOT donated in the past "; unset($pastlist[$uid]); @@ -171,8 +171,8 @@ $lastyear = $config['FISCALYEAR'] - 1; foreach ($lastyearlist AS $uid => $u) { if ($u['sponsors_id']) { - $q = $pdo->prepare("SELECT * FROM fundraising_donations WHERE status='received' AND sponsors_id='{$u['sponsors_id']}' AND fiscalyear='$lastyear'"); - $q->execute(); + $q = $pdo->prepare("SELECT * FROM fundraising_donations WHERE status='received' AND sponsors_id=? AND fiscalyear=?"); + $q->execute([$u['sponsors_id'],$lastyear]); if (!$q->rowCount()) { // echo "removing $uid because they have NOT donated last year "; unset($lastyearlist[$uid]); @@ -185,8 +185,8 @@ foreach ($lastyearlist AS $uid => $u) { foreach ($thisyearlist AS $uid => $u) { if ($u['sponsors_id']) { - $q = $pdo->prepare("SELECT * FROM fundraising_donations WHERE status='received' AND sponsors_id='{$u['sponsors_id']}' AND fiscalyear='{$config['FISCALYEAR']}'"); - $q->execcute(); + $q = $pdo->prepare("SELECT * FROM fundraising_donations WHERE status='received' AND sponsors_id=? AND fiscalyear=?"); + $q->execute([$u['sponsors_id'],$config['FISCALYEAR']]); if (!$q->rowCount()) { // echo "removing $uid because they have NOT donated this year "; unset($thisyearlist[$uid]); @@ -216,12 +216,12 @@ if ($_GET['generatelist']) { $campaignid = $_POST['fundraising_campaigns_id']; $params = serialize($_POST); echo "params=$params"; - $stmt = $pdo->prepare("UPDATE fundraising_campaigns SET filterparameters='{$params}' WHERE id='$campaignid'"); - $stmt->execute(); + $stmt = $pdo->prepare("UPDATE fundraising_campaigns SET filterparameters=? WHERE id=?"); + $stmt->execute([$params,$campaignid]); $uids = array_keys($userslist); foreach ($uids AS $u) { - $stmt = $pdo->prepare("INSERT INTO fundraising_campaigns_users_link (fundraising_campaigns_id, users_uid) VALUES ('$campaignid','$u')"); - $stmt->execute(); + $stmt = $pdo->prepare("INSERT INTO fundraising_campaigns_users_link (fundraising_campaigns_id, users_uid) VALUES (?,?)"); + $stmt->execute([$campaignid,$u]); } echo 'List created'; diff --git a/admin/fundraising_common.inc.php b/admin/fundraising_common.inc.php index 81bfb04b..55b68ba1 100644 --- a/admin/fundraising_common.inc.php +++ b/admin/fundraising_common.inc.php @@ -5,8 +5,8 @@ $salutations = array('Mr.', 'Mrs.', 'Ms', 'Dr.', 'Professor'); function getGoal($goal) { global $config, $pdo; - $q = $pdo->prepare("SELECT * FROM fundraising_goals WHERE goal='$goal' AND fiscalyear='{$config['FISCALYEAR']}' LIMIT 1"); - $q->execute(); + $q = $pdo->prepare("SELECT * FROM fundraising_goals WHERE goal=? AND fiscalyear=? LIMIT 1"); + $q->execute([$goal,$config['FISCALYEAR']]); return $q->fetch(PDO::FETCH_OBJ); } diff --git a/admin/fundraising_goals_handler.inc.php b/admin/fundraising_goals_handler.inc.php index 982bcc89..06c0c9f7 100644 --- a/admin/fundraising_goals_handler.inc.php +++ b/admin/fundraising_goals_handler.inc.php @@ -2,16 +2,16 @@ if ($_POST['action'] == 'funddelete' && $_POST['delete']) { // first lookup all the sponsorships inside the fund $id = intval($_POST['delete']); - $q = $pdo->prepare("SELECT * FROM fundraising_goals WHERE id='$id' AND year='" . $config['FISCALYEAR'] . "'"); - $q->execute(); + $q = $pdo->prepare("SELECT * FROM fundraising_goals WHERE id=? AND year=?"); + $q->execute([$id,$config['FISCALYEAR']]); $f = $q->fetch(PDO::FETCH_OBJ); // hold yer horses, no deleting system funds! if ($f) { if ($f->system == 'no') { - $stmt = $pdo->prepare("DELETE FROM fundraising_donations WHERE fundraising_goal='" . $f->type . "' AND fiscalyear='" . $config['FISCALYEAR'] . "'"); - $stmt->execute(); - $stmt = $pdo->prepare("DELETE FROM fundraising_goals WHERE id='$id'"); - $stmt->execute(); + $stmt = $pdo->prepare("DELETE FROM fundraising_donations WHERE fundraising_goal=? AND fiscalyear=?"); + $stmt->execute([$f->type,$config['FISCALYEAR']]); + $stmt = $pdo->prepare("DELETE FROM fundraising_goals WHERE id=?"); + $stmt->execute([$id]); if ($pdo->rowCount()) happy_('Successfully removed fund %1', array($f->name)); } else { @@ -23,8 +23,8 @@ if ($_POST['action'] == 'funddelete' && $_POST['delete']) { if ($_POST['action'] == 'fundedit' || $_POST['action'] == 'fundadd') { $fundraising_id = intval($_POST['fundraising_id']); if ($fundraising_id) { - $q = $pdo->prepare("SELECT * FROM fundraising_goals WHERE id='$fundraising_id'"); - $q->execute(); + $q = $pdo->prepare("SELECT * FROM fundraising_goals WHERE id=?"); + $q->execute([$fundraising_id]); $f = $q->fetch(PDO::FETCH_OBJ); $system = $f->system; } @@ -37,11 +37,11 @@ if ($_POST['action'] == 'fundedit' || $_POST['action'] == 'fundadd') { if ($_POST['action'] == 'fundedit') { if (($system == 'yes' && $budget) || ($system == 'no' && $budget && $goal && $name)) { if ($system == 'yes') { - $stmt = $pdo->prepare("UPDATE fundraising SET budget='$budget', description='$description' WHERE id='$fundraising_id'"); - $stmt->execute(); + $stmt = $pdo->prepare("UPDATE fundraising SET budget=?, description=? WHERE id=?"); + $stmt->execute([$budget,$description,$fundraising_id]); } else { - $stmt = $pdo->prepare("UPDATE fundraising SET budget='$budget', description='$description', goal='$goal', name='$name' WHERE id='$fundraising_id'"); - $stmt->execute(); + $stmt = $pdo->prepare("UPDATE fundraising SET budget=?, description=?, goal=?, name=? WHERE id=?"); + $stmt->execute([$budget,$description,$goal,$name,$fundraising_id]); } if ($pdo->errorInfo()) diff --git a/admin/judging_score_entry.php b/admin/judging_score_entry.php index 1d0e3750..697af43a 100644 --- a/admin/judging_score_entry.php +++ b/admin/judging_score_entry.php @@ -44,13 +44,13 @@ if ($_GET['csv'] == 'yes') { } ?> -$q = $pdo->prepare("SELECT * FROM projectcategories WHERE year='$year' ORDER BY id"); -$q->execute(); +$q = $pdo->prepare("SELECT * FROM projectcategories WHERE year=? ORDER BY id"); +$q->execute([$year]); while ($r = $q->fetch(PDO::FETCH_OBJ)) $cats[$r->id] = $r->category; -$q = $pdo->prepare("SELECT * FROM projectdivisions WHERE year='$year' ORDER BY id"); -$q->execute(); +$q = $pdo->prepare("SELECT * FROM projectdivisions WHERE year=? ORDER BY id"); +$q->execute([$year]); while ($r = $q->fetch(PDO::FETCH_OBJ)) $divs[$r->id] = $r->division; @@ -74,13 +74,13 @@ $q = $pdo->prepare("SELECT registrations.id AS reg_id, left outer join projects on projects.registrations_id=registrations.id left outer join judges_teams_timeslots_projects_link on projects.id=judges_teams_timeslots_projects_link.projects_id WHERE - registrations.year='$year' " + registrations.year=?" . getJudgingEligibilityCode() . " GROUP BY projectid ORDER BY $ORDERBY "); -$q->execute(); +$q->execute([$year]); show_pdo_errors_if_any($pdo); if ($_GET['csv'] != 'yes') { diff --git a/admin/project_editor.php b/admin/project_editor.php index 3efd2810..98ffb84e 100644 --- a/admin/project_editor.php +++ b/admin/project_editor.php @@ -47,11 +47,11 @@ if ($auth_type == 'fair') { /* Make sure they have permission to laod this student, check the master copy of the fairs_id in the project */ $q = $pdo->prepare("SELECT * FROM projects WHERE - registrations_id='$registrations_id' - AND year='{$config['FAIRYEAR']}' - AND fairs_id=$fairs_id"); + registrations_id=? + AND year=? + AND fairs_id=?"); - $q->execute(); + $q->execute([$registrations_id,$config['FAIRYEAR'],$fairs_id]); if ($q->rowCount() != 1) { echo 'permission denied.'; exit; @@ -69,22 +69,22 @@ switch ($action) { project_save(); /* Now generate */ - $q = $pdo->prepare("SELECT id FROM projects WHERE registrations_id='{$registrations_id}' AND year='{$config['FAIRYEAR']}'"); - $q->execute(); + $q = $pdo->prepare("SELECT id FROM projects WHERE registrations_id=? AND year=?"); + $q->execute([$registrations_id,$config['FAIRYEAR']]); $i = $q->fetch(PDO::FETCH_ASSOC); $id = $i['id']; $stmt = $pdo->prepare("UPDATE projects SET projectnumber=NULL,projectsort=NULL, projectnumber_seq='0',projectsort_seq='0' - WHERE id='$id'"); - $stmt->execute(); + WHERE id=?"); + $stmt->execute([$id]); show_pdo_errors_if_any($pdo); list($pn, $ps, $pns, $pss) = generateProjectNumber($registrations_id); // print("Generated Project Number [$pn]"); - $stmt = $pdo->prepare("UPDATE projects SET projectnumber='$pn',projectsort='$ps', - projectnumber_seq='$pns',projectsort_seq='$pss' - WHERE id='$id'"); - $stmt->execute(); + $stmt = $pdo->prepare("UPDATE projects SET projectnumber=?,projectsort=?, + projectnumber_seq=?,projectsort_seq=? + WHERE id=?"); + $stmt->execute([$pn,$ps,$pns,$pss,$id]); happy_("Generated and Saved Project Number: $pn"); break; @@ -102,8 +102,8 @@ function project_save() global $registrations_id, $config, $pdo; // first, lets make sure this project really does belong to them - $q = $pdo->prepare("SELECT * FROM projects WHERE registrations_id='{$registrations_id}' AND year='{$config['FAIRYEAR']}'"); - $q->execute(); + $q = $pdo->prepare("SELECT * FROM projects WHERE registrations_id=? AND year=?"); + $q->execute([$registrations_id,$config['FAIRYEAR']]); $projectinfo = $q->fetch(PDO::FETCH_OBJ); if (!projectinfo) { echo error(i18n('Invalid project to update')); @@ -121,13 +121,13 @@ function project_save() if (empty($_POST['feedback'])) { $stmt = $pdo->prepare('UPDATE projects SET ' . "flagged='0'" - . "WHERE id='" . intval($_POST['id']) . "'"); - $stmt->execute(); + . "WHERE id=?"); + $stmt->execute([intval($_POST['id'])]); } else { $stmt = $pdo->prepare('UPDATE projects SET ' . "flagged='1'" - . "WHERE id='" . intval($_POST['id']) . "'"); - $stmt->execute(); + . "WHERE id=?"); + $stmt->execute([intval($_POST['id'])]); } show_pdo_errors_if_any($pdo); happy_('Flagging process successfully updated'); @@ -159,15 +159,15 @@ function project_save() // check if they changed the project number if ($_POST['projectnumber'] != $projectinfo->projectnumber) { // check if hte new one is available - $q = $pdo->prepare("SELECT * FROM projects WHERE year='" . $config['FAIRYEAR'] . "' AND projectnumber='" . $_POST['projectnumber'] . "'"); - $q->execute(); + $q = $pdo->prepare("SELECT * FROM projects WHERE year=?' AND projectnumber=?"); + $q->execute([$config['FAIRYEAR'],$_POST['projectnumber']]); if ($q->rowCount()) { error_('Could not change project number. %1 is already in use', array($_POST['projectnumber'])); } else { $stmt = $pdo->prepare("UPDATE projects SET - projectnumber='" . $_POST['projectnumber'] . "' - WHERE id='" . $_POST['id'] . "'"); - $stmt->execute(); + projectnumber=? + WHERE id=?"); + $stmt->execute([$_POST['projectnumber'],$_POST['id']]); happy_('Project number successfully changed to %1', array($_POST['projectnumber'])); } } @@ -178,13 +178,13 @@ function project_load() global $registrations_id, $config, $pdo, $projectcategories_id; // $projectcategories_id=null; // now lets find out their MAX grade, so we can pre-set the Age Category - $q = $pdo->prepare("SELECT MAX(grade) AS maxgrade FROM students WHERE registrations_id='" . $registrations_id . "'"); - $q->execute(); + $q = $pdo->prepare("SELECT MAX(grade) AS maxgrade FROM students WHERE registrations_id=?"); + $q->execute([$registrations_id]); $gradeinfo = $q->fetch(PDO::FETCH_OBJ); // now lets grab all the age categories, so we can choose one based on the max grade - $q = $pdo->prepare("SELECT * FROM projectcategories WHERE year='" . $config['FAIRYEAR'] . "' ORDER BY id"); - $q->execute(); + $q = $pdo->prepare("SELECT * FROM projectcategories WHERE year=? ORDER BY id"); + $q->execute([$config['FAIRYEAR']]); while ($r = $q->fetch(PDO::FETCH_OBJ)) { // save these in an array, just incase we need them later (FIXME: remove this array if we dont need it) $agecategories[$r->id]['category'] = $r->category; @@ -196,24 +196,24 @@ function project_load() } // now select their project info - $q = $pdo->prepare("SELECT * FROM projects WHERE registrations_id='" . $registrations_id . "' AND year='" . $config['FAIRYEAR'] . "'"); + $q = $pdo->prepare("SELECT * FROM projects WHERE registrations_id=? AND year=?"); // check if it exists, if we didnt find any record, lets insert one - $q->execute(); + $q->execute([$registrations_id,$config['FAIRYEAR']]); $projectinfo = $q->fetch(PDO::FETCH_OBJ); if (!$projectinfo) { - $stmt = $pdo->prepare("INSERT INTO projects (registrations_id,projectcategories_id,year) VALUES ('" . $registrations_id . "','$projectcategories_id','" . $config['FAIRYEAR'] . "')"); + $stmt = $pdo->prepare("INSERT INTO projects (registrations_id,projectcategories_id,year) VALUES (?,?,?)"); // and then pull it back out - $stmt->execute(); - $q = $pdo->prepare("SELECT * FROM projects WHERE registrations_id='" . $registrations_id . "' AND year='" . $config['FAIRYEAR'] . "'"); - $q->execute(); + $stmt->execute([$registrations_id,$projectcategories_id,$config['FAIRYEAR']]); + $q = $pdo->prepare("SELECT * FROM projects WHERE registrations_id=? AND year=?"); + $q->execute([ $registrations_id,$config['FAIRYEAR']]); $projectinfo = $q->fetch(PDO::FETCH_OBJ); } // make sure that if they changed their grade on the student page, we update their projectcategories_id accordingly if ($projectcategories_id && $projectinfo->projectcategories_id != $projectcategories_id) { echo notice(i18n('Age category changed, updating to %1', array($agecategories[$projectcategories_id]['category']))); - $stmt = $pdo->prepare("UPDATE projects SET projectcategories_id='$projectcategories_id' WHERE id='$projectinfo->id'"); - $stmt->execute(); + $stmt = $pdo->prepare("UPDATE projects SET projectcategories_id=? WHERE id=?"); + $stmt->execute([$projectcategories_id,$projectinfo->id]); } // output the current status @@ -298,8 +298,8 @@ function countwords() show_pdo_errors_if_any($pdo); // ### } else - $q = $pdo->prepare("SELECT * FROM projectdivisions WHERE year='" . $config['FAIRYEAR'] . "' ORDER BY division"); - $q->execute(); + $q = $pdo->prepare("SELECT * FROM projectdivisions WHERE year=? ORDER BY division"); + $q->execute([$config['FAIRYEAR']]); echo ' '; $showformatbottom = true; if (get_value_from_array($_POST, 'action') == 'received' && get_value_from_array($_POST, 'registration_number')) { - $q = $pdo->prepare("SELECT * FROM registrations WHERE num='" . $_POST['registration_number'] . "' AND year='" . $config['FAIRYEAR'] . "'"); - $q->execute(); + $q = $pdo->prepare("SELECT * FROM registrations WHERE num=? AND year=?"); + $q->execute([$_POST['registration_number'],$config['FAIRYEAR']]); if ($q->rowCount() == 1) { $r = $q->fetch(PDO::FETCH_OBJ); $reg_id = $r->id; |