I am using MOODLE LMS. Users grade will be stored in the database. Now for example if the users grade is between 1 to 10 then the point 5 should print. But I'm not getting the output. Below is the code
$check1 = $DB->get_record_sql("SELECT grade FROM `mdl_quiz_grades` WHERE userid = $USER->id and quiz = '27';");
if ($check1 >= 1 && $check1 <= 10){
$printpoint = 5;
} else {
$printpoint = 0;
}