My aunt has a small company that is in need of an upgrade as of April 30th. Can anyone please point me in the right direction? I did some digging and feel as outdated as can be. Below is the code as it appears on her website .php
<FORM METHOD=POST ACTION="https://secure.authorize.net/gateway/transact.dll">
<INPUT TYPE=HIDDEN NAME="x_Version" VALUE="3.0">
<INPUT TYPE=HIDDEN NAME="x_Login" VALUE="BLANK">
<INPUT TYPE=HIDDEN NAME="x_Show_Form" VALUE="PAYMENT_FORM">
<INPUT TYPE=HIDDEN NAME="x_Amount" VALUE="$15.00">
<INPUT type=hidden name="x_Test_Request" value="FALSE">
<input type=hidden name="x_ADC_Relay_Response value="TRUE">
<input type=hidden name="x_ADC_URL" value="http://www.rentindetroit.com/congrats.php" >
<INPUT type=hidden name="x_receipt_link_method" value="LINK">
<input type=hidden name="session_order_id" value="<?php echo $session_order_id; ?>">
<input type=hidden name="valid_userid" value="<?php echo $_SESSION["valid_userid"]; ?>" >
<input type=hidden name="valid_usertype" value="<?php echo $_SESSION["valid_usertype"]; ?>" >
<input type=hidden name="oid" value="<?php echo $session_order_id; ?>" >
<input type=hidden name="site" value="RentinDetroit.com" >
<input type=hidden name="x_Logo_URL" value="https://rentin.net/rentindetroit/imagenes/header/headerini.jpg">
<input type=hidden name="x_Header_Html_Payment_Form" value="<?php echo $payment_header?>">
<input type=hidden name="x_Footer_Html_Payment_Form" value="<?php echo $payment_footer?>">
<p align="left">
<INPUT TYPE=SUBMIT name=submit VALUE="Click here for secure payment form">
</p>
<p align="center"> </p>
</FORM>
Thanks so much for taking the time,
Mark
05-01-2017 07:31 PM
Hello @superflz
We would suggest using an Authorize.Net Certified Developer to assist you. They can provide suggestions on how to update your website based on your needs.
Richard
05-02-2017 08:24 AM
Hi @superflz,
The transition is not vey difficult. It involves creating a function to encapsulate your form data in XML, instead of name value pairs and posting said XML payload to Authorize.net's API at : https://api.authorize.net/xml/v1/request.api
We have upgraded many applications for the same reason.
05-03-2017 07:37 AM