Re: if/else statement, form-check



Ørjan Langbakk wrote:
Den 28.06.2006 22:27, skriblet BKDotCom følgende:
psudocode:

if ( invalid code )
redirect
elseif ( !email && !phone )
other redirect

Well, yes, but that doesn't really work the way I want it.

See, I have, first, a check for existing email - if there is no email present, I want it to check if there is a phonenumber entered, and if _both_ those conditions are false, then I want to redirect.

I do not wish to redirect after the first false, but after the second.

Have I misunderstood something, or?



Isn't this just:

if( ! email && ! phone ) redirect;
if( email ) do_email
else do_phone

-david-

.



Relevant Pages

  • Re: if/else statement, form-check
    ... if (invalid code) ... other redirect ... Ørjan Langbakk wrote: ... being entered, but allow for either email, phonenumber or both being ...
    (comp.lang.php)
  • Re: if/else statement, form-check
    ... Den 28.06.2006 22:27, skriblet BKDotCom følgende: ... if (invalid code) ... other redirect ... I do not wish to redirect after the first false, ...
    (comp.lang.php)