Using
if ($var)
You'll test if $var
contains a value that's not false -- 1 is true, 123 is too, ...
For more informations about what is considered as true or false, you should take a look at Converting to Boolean.
Using isset(), you'll test if a variable has been set -- i.e. if any not-null value has been written to it.