> Why doesn't the call to !isset() with the negation
> mark loads the nextpage when a name is not entered?

What do you get if you do:

if (isset($a)) {
     print '$a is set';
} else {
     print '$a is not set';
}

$a = "";

if (isset($a)) {
     print '$a is set';
} else {
     print '$a is not set';
}
You get:

F:\>c:\PHP\php -f test.php
$a is not set
$a is set
F:\>

Why? Becasue pointing to an empty string
is not the same as having no pointer at all.

Does this solve your problem?

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

Reply via email to