Posted by Mαrio Gamito on 04/28/05 13:35
Hi,
I have this simple piece of code that worked like a chram in PHP 4.x
Now that i've moved to PHP 5 it doesn't work anymore.
I always get 0 for $form_ok even if all fields are filled.
The variables come from a form in a previous page.
Any ideas on where the problem might be ?
I have "register_globals = Off" in php.ini
Any help would be apreciated.
// test if all fields were filled
if (($email == '') || ($name == '') || ($pass == '') || ($pass2 == '')
|| ($magic_number == '') || ($answer == ''))
$form_ok = 0;
Warm Regards,
[Back to original message]
|