Skip to content

Commit 3a82380

Browse files
committed
Merge pull request #100 from drmonkeyninja/drmonkeyninja-patch-1
Fixed typo and some small formatting improvements
2 parents 2b41c27 + eebafb5 commit 3a82380

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

doc/SIM.markdown

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ a Server Integration Method solution.
1111
Hosted 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
1515
fields 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
1717
reference.
1818

1919
The code below will generate a buy now button that leads to a hosted order page:
@@ -44,7 +44,7 @@ echo $sim->getHiddenFieldString();?>
4444
Fingerprint 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_
5353
Relay 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
5757
Authorize.Net.
5858

5959
To receive a relay response from Authorize.Net you can either configure the
6060
url in the Merchant Interface or specify the url when submitting a transaction
6161
with SIM using the "x_relay_url" field.
6262

6363
When 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
6565
http://yourdomain.com/response_handler.php and execute any logic you want
6666
when a transaction occurs. The AuthorizeNetSIM class makes it easy to verify
6767
the transaction came from Authorize.Net and parse the response:

0 commit comments

Comments
 (0)