I want to post variables like street address, postal code, phone number, county , I'm not sure how cou开发者_StackOverflow社区ld I achieve this.
https://securetrading.net/authorize/form.cgi
I used standard html post.
<form action="https://securetrading.net/authorize/form.cgi" method="post">
</form>
but not sure how to pass this.
You can create a basic form and set its action to that specific url.
like:
<form action = "https://securetrading.net/authorize/form.cgi">
.....
</form>
精彩评论