How to write false $_REQUEST, please help

This is if statement $_REQUEST if the language translated

if ($_REQUEST[‘language’]) {
}

i need to set the opposite, if the language not translated, what its looks like, please help

which one is correct? or no one of them

if (!$_REQUEST[‘language’]) {
}

if ($_REQUEST![‘language’]) {
}

if !($_REQUEST[‘language’]) {
}

None of those :wink:


if (!isset($_REQUEST['language'])) {

}

Also, try to stay clear of $_REQUEST, but use $_POST or $_GET instead (whichever one you need)