posting variable on securetrading.net

317 Views Asked by At

I want to post variables like street address, postal code, phone number, county , I'm not sure how could 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.

1

There are 1 best solutions below

3
On

You can create a basic form and set its action to that specific url.

like:

<form action = "https://securetrading.net/authorize/form.cgi">
.....
</form>