I'm trying to figure out the best way to check multiple required fields w/o having to use javascript. For example, suppose we have 11 fields that are required, I wouldn't want to do something like:
if(((((((((((!$field1)||(!$field2)|| .. all the way to ($field11))))))))))){
do something;
}
The above is half pseudo code in order to demonstrate the required field "if" statement. How could this be cleaned up? Is there a better way to do it?
~Dave