<?php $a=0; if($a==0) { echo “good”; } else if ($a >=1 && $a<=20) { echo “great”; } else if($a>20) { echo “excellent”; } else { echo “no good”; } ?>