I have fixed everything else, even Intvaling works
Now this code causes a "Resource id #13" error for the variable "$score" in this template:
Code:
<b>The question ID is: </b><u>$theqid</u> <i>AND</i> the Score is <font color="FF0000">$score</font> ($answer), $ganswer, $ranswer, $sanswer & $hanswer
^this is the "echomessage" template, used to check the output
Here is the PHP Code:
PHP Code:
// ############################### start update3 ###############################
if ($action=="update3") {
$answer = intval($answer);
if ($answer==$ganswer) {
$whichscore = 'gscore';
}elseif ($answer==$sanswer) {
$whichscore = 'sscore';
}elseif ($answer==$hanswer) {
$whichscore = 'hscore';
}else{
$whichscore = 'rscore';
}
$score = $DB_site->query("SELECT '$whichscore' FROM *tablename*_questions WHERE qid='$theqid'");
if ($bbuserinfo['usergroupid']==2)
{
$DB_site->query("UPDATE user SET question3='$theqid',score3='$score' WHERE userid='$bbuserinfo[userid]'");
}
$goto="*filename*.php?s=$session[sessionhash]&action=4";
eval("standarderror(\"".gettemplate("echomessage")."\");");
}
I suspect it has something to do with the:
PHP Code:
if ($answer==$ganswer) {
$whichscore = 'gscore';
}elseif ($answer==$sanswer) {
$whichscore = 'sscore';
}elseif ($answer==$hanswer) {
$whichscore = 'hscore';
}else{
$whichscore = 'rscore';
}
Can you see the problem, or suggest an alternative method?
I have attached a screenshot of the error itself
Satan