Is it possible to create nested if statements with BF? Like:
if (zipcode != '')zipcode_entry = zipcodeA1 || zipcodeA2 || ...
show html page A1
else if (zipcode != '')zipcode_entry = zipcodeB1 || zipcodeB2 || ...
show html page B1
So it loops through the first if statement zipcodes testing to see if any of the zip codes are a match to what is entered in the blank and if it is, it displays a certain page.
If not, it continues on to the next if statement zip codes and and if it passes that test it displays a different page.
There are about 600 different zipcodes I need to test broken up into 8 unique groups that would be in 8 different if statements.
TIA