Jun 14, 2003 #1 mancroft Programmer Oct 26, 2002 267 GB Component: Getting variables from a combo box into php. I have a combo box with Labels [qty,1,2,3] If the user selects, say, 3 how do I get that selection from the combo box into a php file?
Component: Getting variables from a combo box into php. I have a combo box with Labels [qty,1,2,3] If the user selects, say, 3 how do I get that selection from the combo box into a php file?
Jun 14, 2003 #2 billwatson Instructor Dec 18, 2002 2,312 CA as part of the combo box change handler _lv = new LoadVars(); _lv.sel = myCombo.getSelectedItem().label; _lv.sendAndLoad("my.php",_lv,"POST" Upvote 0 Downvote
as part of the combo box change handler _lv = new LoadVars(); _lv.sel = myCombo.getSelectedItem().label; _lv.sendAndLoad("my.php",_lv,"POST"
Jun 14, 2003 Thread starter #3 mancroft Programmer Oct 26, 2002 267 GB Thanks, Bill. Very helpful. Upvote 0 Downvote