if($var) do something;

verses

if(isset($var)) do something;

The simple form if($var) seems to work fine and I see it in code often.

Is there a good reason for using isset?

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to