Help correct which error of this code
<!--prepared by mohamed nor--> <?php $months = 'Tue'; switch ($months) { case "jan": echo "month is january."; break; case "feb": echo "month is february."; break; case "march": echo "month is march."; break; case "april": echo "month is april."; break; case "may": echo "month is may."; break; case "june": echo "month is june."; break; case "july": echo "month is july."; break; case "agust": echo "month is agust."; break; case "septem": echo "month is setemper."; break; case "october": echo "month is october."; break; case "november": echo "month is november."; break; default: echo "Invalid months."; } ?>