Hi
I've been doing some php studying and I'm a little confused about the isset() function. This apparantly returns the value TRUE if a variable is set
so I can do
if (isset($var)) echo "Var is set";
However, I'm confused because I have always used
if ($var) echo "Var is set";
What is the need of the isset function? What am I missing?
Thanks ... Fizz