I have a 2-d array of the form:
Array ( [0] => Array ( [A] => aaa [B] => bbb [C] => ccc [D] => ddd ) [1] => Array ( [A] => aaaa=1 [B] => bbb1 [C] => ccc1 [D] => ddd1 ) ... )
and I have a form like:
A: choose A
B: choose B
C: choose C
where the contents of the select menu's A, B and C are populated based on the previous select menu option chosen.
Like if the values for A are android, ios, windows, the values for B are htc, lumia, iphone, samsung and the values of C are htc one, htc first, lumia 920, iphone4, iphone5, galaxy 4.
Does anyone know how I can do this?
Thanks!