i have something like this:
group=new Array()
group[1][1]=new Option("Bronze","47"
;
group[1][2]=new Option("Silver","46"
;
group[1][3]=new Option("Gold","45"
;
is it possible to fill the options dynamically with data from mysql db? fe. let's assume the colors would have to be pulled from colors table from mysql db by some select statement.
i'd be grateful for any help.
group=new Array()
group[1][1]=new Option("Bronze","47"
group[1][2]=new Option("Silver","46"
group[1][3]=new Option("Gold","45"
is it possible to fill the options dynamically with data from mysql db? fe. let's assume the colors would have to be pulled from colors table from mysql db by some select statement.
i'd be grateful for any help.