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")); + } } ?>