Your if-statement should be like this:[code] if(isset($_REQUEST['firstname']) && !empty($_REQUEST['firstname'])) { ... } [/code]
Or even:
[code]
if(!empty($_REQUEST['firstname'])) {
...
}
[/code]
Because empty will also check if variable exists
--
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

