hello,
I have an array that looks like this:
$required = array( '$POST[name]', '$POST[name2]', '$POST[address]', '$POST[city]', '$POST[state]', '$POST[zip]', '$POST[p1]', '$POST[p1b]', '$POST[p1c]', '$POST[preference]', '$POST[question_1]', '$POST[question_2]', '$POST[question_3]', '$POST[question_4]', '$POST[value]', '$POST[owe]', '$POST[interest]', '$POST[monthly]', '$POST[annual_income]', '$POST[cash_out]', '$_POST[new_loan]' );
Now, basically, what I'd like to do is do something like this:
If any of the vaules in the array = NOTHING then do...bla bla. bla....
How would I write this?
Any help/coding examples are appreciated! Thanks in advance!