diff --git a/judge_other.php b/judge_other.php index e9ff4914..bac97049 100644 --- a/judge_other.php +++ b/judge_other.php @@ -59,6 +59,7 @@ case 'save': $u['highest_psd'] = stripslashes($_POST['highest_psd']); user_save($u); + questions_save_answers("judgereg",$u['id'],$_POST['questions']); happy_("Preferences successfully saved"); exit; } diff --git a/questions.inc.php b/questions.inc.php index 85089766..09ca2134 100644 --- a/questions.inc.php +++ b/questions.inc.php @@ -63,28 +63,22 @@ function questions_load_questions($section, $year) function questions_save_answers($section, $id, $answers) { - $qs = questions_load_questions($section); + global $config; + $qs = questions_load_questions($section,$config['FAIRYEAR']); $keys = array_keys($answers); - $query = "DELETE FROM question_answers ". - "WHERE users_id='$id' ". - " AND ("; - $n = 0; - foreach($keys as $qid) { - if($n == 1) $query .= " OR "; - $n = 1; - $query .= " questions_id='$qid'"; - } - $query .= ')'; - mysql_query($query); + $q=mysql_query("SELECT * FROM questions WHERE year='{$config['FAIRYEAR']}'"); + while($r=mysql_fetch_object($q)) { + mysql_query("DELETE FROM question_answers WHERE users_id='$id' AND questions_id='$r->id'"); + echo mysql_error(); + } $keys = array_keys($answers); foreach($keys as $qid) { /* Poll key */ - mysql_query("INSERT INTO question_answers ". - "(users_id,questions_id,answer) VALUES(". - "'$id','$qid',". - "'".mysql_escape_string($answers[$qid])."'". - ")" ); + mysql_query("INSERT INTO question_answers + (users_id,questions_id,answer) VALUES( + '$id','$qid', + '".mysql_escape_string($answers[$qid])."')" ); } } @@ -105,7 +99,6 @@ function questions_print_answer_editor($section, &$u, $array_name) { $ans = questions_load_answers($section, $u['id']); $qs = questions_load_questions($section, $u['year']); - $keys = array_keys($qs); foreach($keys as $qid) { print("\n"); @@ -125,6 +118,10 @@ function questions_print_answer_editor($section, &$u, $array_name) "name=\"$iname\" size=10 maxlen=11 ". "value=\"{$ans[$qid]}\" >\n"); break; + case 'check': + if($ans[$qid]=="yes") $ch="checked=\"checked\""; else $ch=""; + print("\n"); + break; } print("\n"); print("\n"); @@ -133,8 +130,9 @@ function questions_print_answer_editor($section, &$u, $array_name) function questions_print_answers($section, $id) { + global $config; $ans = questions_load_answers($section, $id); - $qs = questions_load_questions($section); + $qs = questions_load_questions($section,$config['FAIRYEAR']); $keys = array_keys($qs); foreach($keys as $qid) { echo "\n";