[PHP] isset()

I don’t understand what’s the difference between:


if($var)
   echo ('hello');

and


if(isset($var))
   echo ('hello');