PHP making input from web form case insensitive?
- by Haskella
So I have some code here that takes user input from a standard web form:
$searchsport = $_POST['sport'];
$sportarray = array(
"Football" => "Fb01",
"Cricket" => "ck32",
"Tennis" => "Tn43",
);
if(isset($sportarray[$searchsport])){
header("Location: ".$sportarray[$searchsport].".html");
die;
}
How would I go about modifying this (I think…