Hi,
I'm stuck on knowing what tag to use in the following code, that sends info to Verisign.
<form target="_blank" method="post" ACTION="https://payments.verisign.com.au/payflowlink">
<input type="hidden" name="login" value="xxxxxxx">
<input type="hidden" name="partner" value="VSA">
<!-- The transaction AMOUNT must be at least 1.00 (one dollar) -->
<INPUT name=AMOUNT type=hidden value="<?php echo $passed_form['form_total_price'];?>">
<!-- See “Transaction Type Codes” on page 61 of Verisign Payflow Link Guide for a list. -->
<input type="hidden" name="TYPE" value="S">
<!-- End Verisign form info -->
</form>
the tag in question is:
<INPUT name=AMOUNT type=hidden value="<?php echo $passed_form['form_total_price'];?>">
Basically what I require is the Amount Value, which is either 1 of the following:
VALUES
'$total_price'
or
$query_string = "INSERT INTO soc_order
( order_total_price
)
I simply don't know if this is right or not:
<?php echo $passed_form['form_total_price'];?>
Any help would be greatly appreciated, thank you 🙂