I would like to ask, where is the error in my php code? ? ?
ZXT2021-01-27 20:57:49
0
4
1013
<?php
$score=rand(0,100);if($score>90){ echo "Congratulations! Your score is excellent";}else if($score>=60) ;{ echo "Not bad, your score is good";}else{ echo "Sorry! You failed";}
Isn't your writing rigorous enough? If a number is 91, does it print out as excellent or passing?
else if ($score>=60);There is a problem with; here.