On 17-May-01 [EMAIL PROTECTED] wrote:
> i have a php script that has three variables that could be set to "1"
> depending on the values of a form being sent to the .php file.
>
> $add
> $remove
> $view
>
> i need to do some error control in my script to make certain that one and
> only one of these is set to "1". i am coming up with a very long
> control structure:
>
> if (($add="1") && ($remove="1") || ($add="1") && ($view="1") || etc...))
>
if (($add + $remove + $view) > 1) {
die("I'm so confused ...");
}
Regards,
--
Don Read [EMAIL PROTECTED]
-- It's always darkest before the dawn. So if you are going to
steal the neighbor's newspaper, that's the time to do it.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]