PHP ELSEIF Parse Error. What is causing this?
You are very close. elseif ($gAve <=59 and >=0) should actually read elseif ($gAve <=59 and $gAve >=0) Note the reinsertion of the variable. Fix this in each of your elseif lines and you are all set. May also just be me, but I typically use echo instead of print… don’t need all those extra parentheses.