dhtmlxCombo - Form using GET instead of POST

Hi,



Here is my form with dhtmlxCombo:







LOOP DATA

LOOP.CNAME

END LOOP











Page doesn’t pass value for the combo filed to next page. I assume this is because of using GET instead of POST?

Any solutions?



Thanks


There is not difference either you use GET or POST method. Please, check the sample in the combo package:


dhtmlxCombo/samples/02_actions/03_combo_save.html


But in case of GET you should use use another approach on server to get the parameters: $_GET instead of $_POST

Thanks for a quick reply. I understand what you are saying and I know one must use $_GET for such scenarios.
But with my form the query string goes complete blank i.e mysite.com/page2.php?     (<- nothing gets passed as query string)
At the moment I am forced to do the following:





LOOP DATA

LOOP.CNAME

END LOOP










Basically using the onChange event to assign the value to the hidden form field. and this works!. produces:
mysite.com/page2.php?cid=19


Hello,


the issue wasn’t reproduced locally. We have tested the dhtmlxCombo/samples/02_actions/03_combo_save.html sample ( teh sample from the combo package, but with GET instead of POST):