@@ -11,9 +11,9 @@ a Server Integration Method solution.
1111Hosted Order/Receipt Page
1212-------------------------
1313
14- The AuthorizeNetSIM_Form class aims to make it easier to setup the hidden
14+ The ` AuthorizeNetSIM_Form ` class aims to make it easier to setup the hidden
1515fields necessary for creating a SIM experience. While it is not necessary
16- to use the AuthorizeNetSIM_Form class to implement SIM, it may be handy for
16+ to use the ` AuthorizeNetSIM_Form ` class to implement SIM, it may be handy for
1717reference.
1818
1919The code below will generate a buy now button that leads to a hosted order page:
@@ -44,7 +44,7 @@ echo $sim->getHiddenFieldString();?>
4444Fingerprint Generation
4545----------------------
4646
47- To generate the fingerprint needed for a SIM transaction call the getFingerprint method:
47+ To generate the fingerprint needed for a SIM transaction call the ` getFingerprint ` method:
4848
4949``` PHP
5050$fingerprint = AuthorizeNetSIM_Form::getFingerprint($api_login_id, $transaction_key, $amount, $fp_sequence, $fp_timestamp);
@@ -53,15 +53,15 @@ $fingerprint = AuthorizeNetSIM_Form::getFingerprint($api_login_id, $transaction_
5353Relay Response
5454--------------
5555
56- The PHP SDK includes a AuthorizeNetSIM class for handling a relay response from
56+ The PHP SDK includes a ` AuthorizeNetSIM ` class for handling a relay response from
5757Authorize.Net.
5858
5959To receive a relay response from Authorize.Net you can either configure the
6060url in the Merchant Interface or specify the url when submitting a transaction
6161with SIM using the "x_relay_url" field.
6262
6363When a transaction occurs, Authorize.Net will post the transaction details to
64- this url. You can then craete a page on your server at a url such as
64+ this url. You can then create a page on your server at a url such as
6565http://yourdomain.com/response_handler.php and execute any logic you want
6666when a transaction occurs. The AuthorizeNetSIM class makes it easy to verify
6767the transaction came from Authorize.Net and parse the response:
0 commit comments