Böyle John'un bisiklet gibi bir kesme işareti, bir şey yazdığınızda Yani temelde John \ 'nin motosikletini yankılanacak. Aşağıdaki kodu:
<?php
$searchname = $_POST["name"] ;
echo "$searchname";
Benim formu POST yöntemini kullanır. Bu durdurmak için herhangi bir yolu var mı?
Ayrıca ne ben bu segmentte gitmek girişi harf duyarsız yapmak için?
$searchsport = $_POST['sport'];
$sportarray = array(
"Football" => "Fb01",
"Cricket" => "ck32",
"Tennis" => "Tn43",
);
if(isset($sportarray[$searchsport])){
header("Location: ".$sportarray[$searchsport].".html");
die;
}
//what code is needed to make the if statement work? I've looked up some weird ways such as using array_change_key_case (which I clearly don't understand).