I am using an API to collect some information. I send a form using POST to the API's URL. And it returns XML.
Basically,
<form action="http://api.paythrudev.com/gettoken" method="POST">
<input type="text" name="api_key" value="xxxx"/>
<input type="text" name="api_password" value="xxxx"/>
<input type="text" name="item_name" value="AA"/>
<input type="text" name="item_price" value="12"/>
<p><input type="submit" /></p>
</form>
When i submit this form, it displays XML.
However,
When user clicks submit button, i dont want the user to see the XML but I want the user to be redirected to a page (returning XML has the URL as an element)
How can i achieve this?
- By jquery's post method?
- Can i achieve this by PHP? without using javascript.
Thanks in advance.