Is there a way to change the statement below so that it ignores case sensitivity of the variable? for instance, the statement would be true if $category == 'Admissions', 'ADMISSIONS', 'admissions', etc.
For some reason I'm having the worst time finding this via google search and know y'all will be able to help!
if ($category == 'Admissions') {
echo ' <a href="#">-Forms</a><br /> <a href="#">-Tuition</a><br />'; } ?>
Thanks!