Hi,
I'm have a woeful time trying to get a php script to send info to the Verisign Payflow page.
Basically I have no idea what I'm doing 😕
here is a basic example for the payflow setup & below that I'll place my php script.
Any assistance & help would be super, thanks.
<form method="POST"
action="action="https://payments.verisign.com.au/payflowlink">
<!-- The following fields are required: -->
<input type="hidden" name="LOGIN" value="Your LOGIN here">
<input type="hidden" name="PARTNER" value="VSA">
<!-- The transaction AMOUNT must be at least 1.00 (one dollar) -->
<input type="hidden" name="AMOUNT" value="Total transaction amount here">
<input type="hidden" name="TYPE" value="Valid transaction type here">
<!-- See “Transaction Type Codes” on page 61 for a list. -->
<!-- The following fields are optional--you can choose these or others: -->
<input type="hidden" name="DESCRIPTION" value="Order description here">
<input type="hidden" name="NAME" value="Billing name here">
<input type="hidden" name="ADDRESS" value="Billing address here">
<input type="hidden" name="CITY" value="Billing city here">
<input type="hidden" name="STATE" value="Billing state here">
<input type="hidden" name="ZIP" value="Billing zip here">
<input type="hidden" name="COUNTRY" value="Billing country here">
<input type="hidden" name="PHONE" value="Billing phone here">
<input type="hidden" name="FAX" value="Billing fax here">
<p>Enter your Customer ID Number <input type="text" name="USER1"
size="12"></p>
<p><input type="submit" value="Click Here to Purchase"></p>
</form>
The script that I'm trying to implement to hook into payflow I have to add in another post below: