[snip]
I did!  Look at this again:

$which_person = mysql_query("SELECT ID FROM tblItems WHERE number =
$place");

                $vthere = mysql_num_rows($which_person);

                if ($vthere == '0') { True } else { False }

Yet it still returns as if this is FALSE (i.e. it executes the else {}.
:\
[/snip]

try ....

if ($vthere == 0) { True } else { False }

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

Reply via email to