Hello - I'm trying to write a PHP script that will capture the returned data from Verisign PayFlo Link transactions.
So far, I haven't had any luch being able to get anything back from Verisign after the user hits the submit button. They describe putting in an ECHODATA hidden input field which supposedly should capture the customer's name, email, etc.
I can't get this working at all - this is the code I've been playing with:
<form name="calculate">
<INPUT TYPE=text NAME="EMAIL" VALUE="">
<INPUT TYPE=text NAME="ADDRESS" VALUE="">
<INPUT TYPE=text NAME="CITY" VALUE="">
<INPUT TYPE=text NAME="STATE" VALUE="">
<INPUT TYPE=text NAME="ZIP" VALUE="">
<INPUT TYPE=hidden NAME="ECHODATA" VALUE="TRUE">
<input type="hidden" name="LOGIN" value="flreina">
<input type="hidden" name="PARTNER" value="VeriSign">
<input type="hidden" name="amount" value="">
Has anybody used this system? Any little tidbits of wisdom would be gobbled ferociously and greatly, greatly appreciated. Thanks.
ian
<input type="hidden" name="TYPE" value="S">
</form>
<?php
$captured = $ECHODATA;
print $captured;
?>