Код: Выделить всё
$fruits = array(
"Orange",
"Banana"
);
if(isset($_GET['fruit']) & in_array($_GET['fruit'], $fruits)) {
// do stuff with $_GET['fruit']
}
Подробнее здесь: https://stackoverflow.com/questions/794 ... xpected-va
Код: Выделить всё
$fruits = array(
"Orange",
"Banana"
);
if(isset($_GET['fruit']) & in_array($_GET['fruit'], $fruits)) {
// do stuff with $_GET['fruit']
}