Ok...That didnt work...
But then I had an idea - Why query the database for "$whichscore" if the score value is already defined - So I was thinking:
Code:
if ($answer == $ganswer){
$score = $gscore;
} elseif ($answer == $sanswer){
$score = $sscore;
} elseif ($answer == $hanswer){
$score = $hscore;
} else {
$score = $rscore;
}
$gscore = 4;
$hscore = 3;
$rscore = 2;
$sscore = 1;
if ($bbuserinfo['usergroupid'] == 2){
$DB_site->query("UPDATE user SET question1 = '"
.$theqid
."', score1 = '"
.$score ."'
WHERE userid = '"
.$bbuserinfo[userid]."'");
}
Think I should try it?
Edit: It didn't work
Satan