Hello,
Im using jquery Ajax get to process form data
The data that needs to be send to the js callback function is an XML
Sadly echo $xmldata is not working
My take:
In file scripts
[php]
$(document).ready(function(){
…
$.post(‘formhancle.php’, formdata, process)
Return false;
…
});
[/php]
formhandle.php
[php]Some code…
$XML =get ml();
Echo $XML;
[/php]
Callback function not responding and I get weird output to the screen.
Thanks a lot
Roy