Suppose I have the following URL:
https://www.example.com
I add a name parameter with a value "John" to the url as follow:
https://www.example.com?name=John
In order to get the name parameter's value from the URL, I have try
$_GET["name"]
However, people might not pay attention to the case and type the parameter in upper case or uppercase and lower-case commbine. How do I get the parameter's value case-insenstively?
for example, $_GET["name"], $_GET["Name"], and $_GET["nAme"]
will return the same value.