Im trying to figure out why Im not getting a value for the variable im trying to create in this query.
"select MAX(score) as max_score from rounds where username='".$user."' and course='".$course."'";
The max_score variable is needed for another query but I cant get that variable to actually contain the max value from the column. Any idea why this variable doesnt get the information im looking for?