How can I check if a variable is defined?

if (isset($var)) {
echo “the var is set, and equals $var. It may be empty though.”;
}
http://www.php.net/isset

isset() will tell you is a varaible has been defined. This can bite some
users, because it will return true even if the varable has an empty
value. Look at empty() as well. Sometimes you’ll want to use one rather
than the other. Note that even “0” and 0 are considered empty.

http://www.php.net/empty

For example, say I have an HTML form that passes various form
elements. Even when a user leaves one blank, the variable is still be
set, so isset() will return true. empty() will also return true as
it’s empty, even though it’s set. But also note that since PHP 4, if
someone enters in the value 0 into a form, it’s also seen as empty.

For a useful type comparisons chart of isset() vs empty() vs many other
functions and syntax, see this appendix:

http://www.php.net/manual/en/types.comparisons.php

if (isset($var)) {
    echo "the var is set, and equals $var.  It may be empty though.";
}
Ashesh

सयौ थुङ्गा फूलका हामी एउटै माला नेपाली, Welcome to my webpage. I'm from the Himalayan Country of Nepal. Well talking about me, I like mostly Web programming and Designing and furthermore I like Philosophical literature, Photography, Social networking. And I am Romantic and Sentimental person to some extent. Read more...

View Comments