I have a basic HTML form that needs to send POST data directly to a 3rd party website without passing through my web server?
how do I do this?
<form action="remote_url" method="post">
<label>Security code:</label>
<input name="CreditCardSecurityCode" type="text" maxlength="3" size="3" />
<input name="formSubmit" type="submit" value="Process Payment" />
</form>