If I have the variable choice being inputted by the user, how can I use a non case sensitive comparison?
Basically without doing this:
[PHP]
choice = "a";
if(choice == "a" || choice == "A")
{...}[/PHP]
Basically without doing this:
[PHP]
choice = "a";
if(choice == "a" || choice == "A")
{...}[/PHP]
Comment