Working on a quiz website where when users submits their answers $perQuestionScore equals true when the answer is correct but false when it is wrong. I'm trying to find the instances where $perQuestionScore equals true in other to total the score but it doesn't seem to work. 
My code looks like below
   <?php    
$perQuestionScore = 0;
if (isset($_POST['grader'])) {
if(isset($_POST[$chosen]))
{
        $choice= $_POST[$chosen];
    if (strpos($choice, $correctOne) !== false) {
        $perQuestionScore++;
    echo $_POST[$chosen] . "" . " is the correct answer";
} elseif (strpos($choice, $correctOne) == false) { echo $_POST[$chosen] . "" . " is the Wrong answer";
} else  {
echo "You did not choose an answer"; { 
}
}
}               
}
     }
     echo "<input id=grader' type='submit' name='grader' value='Grade Quiz'>" . "</form>";
                    echo $perQuestionScore * 10;
} 
$conn->close();
?> 
