How To Send Html Code In An Http Post Request?
I am an sending a HTTP POST request from a Google Web Toolkit app to a php script. The content-type is 'application/x-www-form-urlencoded' right now so I can send variables to php
Solution 1:
Percent-encode the query parameter. In JavaScript, you can use the encodeURIComponent
function.
Post a Comment for "How To Send Html Code In An Http Post Request?"