There is a way to determine if there is any $_GET value (not with a specific key) passed in a GET request ? I'm not sure the syntax
isset($_GET)
is valide
There is a way to determine if there is any $_GET value (not with a specific key) passed in a GET request ? I'm not sure the syntax
isset($_GET)
is valide
$_GET
is array so use count
instead of isset
.
<?php
if(count($_GET) >0){
//valid
}
?>