Search code examples
phpgetissetis-empty

How do I check if a $_GET parameter exists but has no value?


I want to check if the app parameter exists in the URL, but has no value.

Example:

my_url.php?app

I tried isset() and empty(), but don’t work. I’ve seen it done before and I forgot how.


Solution

  • Empty is correct. You want to use both is set and empty together

    if(!empty($_GET['app'])){
        echo "App = ".$_GET['app'];
    } else {
        echo "App is empty";
    }