How can I post data from javascript using XMLHTTPRequest and then read the data in PHP. It works using POST with a form and hidden field but I want to send a large XML string without using a form and hidden field leaving the current page in the browser.
What value do I need to use for send
and how do I read the value in the php script?
What value do I need to use for send
Code:
http.open("POST","abc.php",false);
http.send(?)
and how do I read the value in the php script?