Sample TrustCash Payment Buttons.
Each payment button is set for a different amount with a different description.
In order to make these work a merchant needs to change the "SITE ID" line:
Change: 75 to the SITE ID given to you by the TrustCash Administrators.
<input name="site_id" type="hidden" id="site_id" value="75" />
Also in order to change the description of the payment. What the consumer sees as this payment's description.
Change: "Sample Payment" here:
<input name="order_description" type="hidden" id="order_description" value="Sample Payment" />
Change the Session ID to the unique id you want to pass to us which you will receive back as a session (can be anything up to 255 characters)
<input name="sessiont" type="hidden" id="session" value="yoursessionid1234567890" />
Lastly to change the payment amount you must change the following line:
Change the 100.00 to the amount you want this payment button
<input name="charge_amount" type="hidden" id="charge_amount" value="100.00" />
You can copy this code and simply change it as you need: