On 4/21/07, Richard Kurth <[EMAIL PROTECTED]> wrote:
> How can I do something like this in the same while statement. This 
> does not work while (list(,$possible) = each($possiblefields)  
> list(,$possibleview) = each($possiblefieldsdiscription)){
> }
>

What about using && ?


while (list(,$possible) = each($possiblefields) &&
list(,$possibleview) = each($possiblefieldsdiscription)){
}


Doesn't && mean if both variables are TRUE.

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

Reply via email to