From 6c9b2ec0639f91bbca71c7b422a4840570e4e5cd Mon Sep 17 00:00:00 2001 From: Armanveer Gill Date: Wed, 1 Jan 2025 17:23:20 -0500 Subject: [PATCH] Resolved the issue of warnings showing up when trying to add a new shool under school management. --- .gitignore | 1 + admin/registration_webconsent.php | 56 ++++++++++++++++-------------- admin/schools.php | 25 +++++++++++-- data/logo-100.png | Bin 17224 -> 17224 bytes data/logo-200.png | Bin 50642 -> 50642 bytes data/logo-500.png | Bin 196587 -> 196587 bytes data/logo.png | Bin 82632 -> 82632 bytes 7 files changed, 53 insertions(+), 29 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..adbb97d2 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +data/ \ No newline at end of file diff --git a/admin/registration_webconsent.php b/admin/registration_webconsent.php index 2be6a613..491f2f54 100644 --- a/admin/registration_webconsent.php +++ b/admin/registration_webconsent.php @@ -45,20 +45,24 @@ $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) + + if($numchanged==1) { echo happy(i18n("1 student record updated")); - else if($numchanged>1) + } else if($numchanged>1) { echo happy(i18n("%1 student records updated",array($numchanged))); - else + } else { echo error(i18n("No student records where changed")); + } } ?>