I am using the postback field to post data back to my form, so my users need not retype their billing information. I've been able to pull the error message from the postback to display to the user when there is an error, but I cannot seem to pull the decline message to display when the transaction is declined.
For the error, I use php: " $err = $_POST['err'];"
When I use "get" as my postback method, the decline message appears to be assigned to "on", but I do not get a value with I try:
" $decline = $_POST['on'];"
What do I call to get the decline message?
thanks, Amanda
For the error, I use php: " $err = $_POST['err'];"
When I use "get" as my postback method, the decline message appears to be assigned to "on", but I do not get a value with I try:
" $decline = $_POST['on'];"
What do I call to get the decline message?
thanks, Amanda
Comment