On Thursday 06 February 2003 22:50, [EMAIL PROTECTED] wrote:

> > <input> of type text are set regardless of whether you have entered
> > anything.
> > Thus isset() returns true.

> Actually, I believe it's not a matter of the input being set, but the fact
> that isset() returns true on an empty variable.

Try this:

<?php

if (isset($doo)) {
  print '$doo is set'; // does not get printed
}
  
if (empty($doo)) {
  print '$doo is empty'; // gets printed
} 
  
?>

-- 
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
------------------------------------------
Search the list archives before you post
http://marc.theaimsgroup.com/?l=php-general
------------------------------------------
/*
The solution to a problem changes the nature of the problem.
                -- Peer
*/


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

Reply via email to