Help about submitting xml elements in dhtmlxcombo

Hello Experts,
I will sincerely appreciate if you help me to submit xml elements in dhtmlxcombo to serverside php.
I’m using following example and I want to submit selected xml values.
dhtmlx.com/docs/products/dhtmlxC … .html#code

for example I want to submit Denmark and post it to a php.

thanks a lot in advance.
Br.
beniy

Hello,

depending on a task you can use PHP Connector docs.dhtmlx.com/connector__php__index.html

or do smth like

myCombo.attachEvent("onChange", function(){ var xhr = new XMLHttpRequest(); xhr.open('get', '04_from_xml_server.php?val='+myCombo.getSelectedValue()); /*xhr.onreadystatechange = function(){ if(xhr.readyState === 4){ if(xhr.status === 200){ } } }*/ xhr.send(null); });

Thank you so much for your reply.
That was very useful.
But as it has been replied late I found another way but almost similar than what you said.
Thanks