Forum Moderators: open
var MODELS = new Array(
new Array('Any'),
new Array('ACE','COBRA','SUPERBLOWER',''),
new Array('500','500.5','MAC 500',''),
new Array('145','146','147','155','156','164','166','33','75','ALFASUD','GT','GTV','RZ','SPIDER','SPORTWAGON','SZ',''),
The make part i have manged to do, but i cant cant get my head around the model part any ideas?
I don't know how to define two-dimensional arrays in php, but in asp the simplest syntax would be:
Dim models(3, 15)
models(0,0) = 'any'
.
.
.
Come to think of it, the problem may be due to the fact the the resulting matrix (2d array) won't be square.
Hope this helps.
-Peter