<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: SIM Integration with different amounts in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-Integration-with-different-amounts/m-p/34033#M18529</link>
    <description>&lt;P&gt;Couldn't you pass the $ amount from another page? or use multiple checkout page? or if else statement?&lt;/P&gt;</description>
    <pubDate>Wed, 24 Apr 2013 20:18:49 GMT</pubDate>
    <dc:creator>RaynorC1emen7</dc:creator>
    <dc:date>2013-04-24T20:18:49Z</dc:date>
    <item>
      <title>SIM Integration with different amounts</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-Integration-with-different-amounts/m-p/34030#M18526</link>
      <description>&lt;P&gt;I want to use the SIM integration for handling payments through one part of my website. This integration has to handle payments for events, which each have a different and unique price. The "Golf"-event could cost $65, while the "Annual Business Meeting" would only cost $10. How would I handle different amounts that is easy for my client to handle himself (i.e. through a panel or the backend of Authorize.Net)?&lt;BR /&gt;&lt;BR /&gt;Because it seems like there's no way of doing this by looking at the Quick Start Guide using PHP (&lt;A href="https://developer.authorize.net/integration/fifteenminutes/#hosted" target="_blank"&gt;https://developer.authorize.net/integration/fifteenminutes/#hosted&lt;/A&gt;):&lt;/P&gt;&lt;PRE&gt;&amp;lt;?php
require_once 'anet_php_sdk/AuthorizeNet.php'; // Include the SDK you downloaded in Step 2
$api_login_id = 'YOUR_API_LOGIN_ID';
$transaction_key = 'YOUR_TRANSACTION_KEY';
$amount = "5.99";
$fp_timestamp = time();
$fp_sequence = "123" . time(); // Enter an invoice or other unique number.
$fingerprint = AuthorizeNetSIM_Form::getFingerprint($api_login_id,
  $transaction_key, $amount, $fp_sequence, $fp_timestamp)
?&amp;gt;

&amp;lt;form method='post' action="&lt;A href="https://test.authorize.net/gateway/transact.dll" target="_blank"&gt;https://test.authorize.net/gateway/transact.dll&lt;/A&gt;"&amp;gt;
&amp;lt;input type='hidden' name="x_login" value="&amp;lt;?php echo $api_login_id?&amp;gt;" /&amp;gt;
&amp;lt;input type='hidden' name="x_fp_hash" value="&amp;lt;?php echo $fingerprint?&amp;gt;" /&amp;gt;
&amp;lt;input type='hidden' name="x_amount" value="&amp;lt;?php echo $amount?&amp;gt;" /&amp;gt;
&amp;lt;input type='hidden' name="x_fp_timestamp" value="&amp;lt;?php echo $fp_timestamp?&amp;gt;" /&amp;gt;
&amp;lt;input type='hidden' name="x_fp_sequence" value="&amp;lt;?php echo $fp_sequence?&amp;gt;" /&amp;gt;
&amp;lt;input type='hidden' name="x_version" value="3.1"&amp;gt;
&amp;lt;input type='hidden' name="x_show_form" value="payment_form"&amp;gt;
&amp;lt;input type='hidden' name="x_test_request" value="false" /&amp;gt;
&amp;lt;input type='hidden' name="x_method" value="cc"&amp;gt;
&amp;lt;input type='submit' value="Click here for the secure payment form"&amp;gt;
&amp;lt;/form&amp;gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I really need your help. I've been trying to figure this out for ages now.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Frederick Andersen&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2013 18:56:26 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-Integration-with-different-amounts/m-p/34030#M18526</guid>
      <dc:creator>FredrixDesign</dc:creator>
      <dc:date>2013-04-24T18:56:26Z</dc:date>
    </item>
    <item>
      <title>Re: SIM Integration with different amounts</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-Integration-with-different-amounts/m-p/34033#M18529</link>
      <description>&lt;P&gt;Couldn't you pass the $ amount from another page? or use multiple checkout page? or if else statement?&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2013 20:18:49 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-Integration-with-different-amounts/m-p/34033#M18529</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2013-04-24T20:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: SIM Integration with different amounts</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-Integration-with-different-amounts/m-p/34034#M18530</link>
      <description>&lt;P&gt;How would you setup multiple checkout pages easily? It would probably would be the smartest solution, because the client has to be able to create an event in WordPress and through a custom field link to the SIM payment gateway.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You have any ideas?&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2013 20:30:15 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-Integration-with-different-amounts/m-p/34034#M18530</guid>
      <dc:creator>FredrixDesign</dc:creator>
      <dc:date>2013-04-24T20:30:15Z</dc:date>
    </item>
    <item>
      <title>Re: SIM Integration with different amounts</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-Integration-with-different-amounts/m-p/34035#M18531</link>
      <description>&lt;P&gt;Sorry, I don't work with php.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2013 20:43:44 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-Integration-with-different-amounts/m-p/34035#M18531</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2013-04-24T20:43:44Z</dc:date>
    </item>
    <item>
      <title>Re: SIM Integration with different amounts</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-Integration-with-different-amounts/m-p/34036#M18532</link>
      <description>&lt;P&gt;Would you be able to accomplish it using JavaScript?&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2013 21:30:32 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-Integration-with-different-amounts/m-p/34036#M18532</guid>
      <dc:creator>FredrixDesign</dc:creator>
      <dc:date>2013-04-24T21:30:32Z</dc:date>
    </item>
    <item>
      <title>Re: SIM Integration with different amounts</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-Integration-with-different-amounts/m-p/34037#M18533</link>
      <description>&lt;P&gt;Not with just javascript because it need the x_fp_hash which required the transactionKey. And you do NOT want it get out.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2013 23:26:28 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-Integration-with-different-amounts/m-p/34037#M18533</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2013-04-24T23:26:28Z</dc:date>
    </item>
    <item>
      <title>Re: SIM Integration with different amounts</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-Integration-with-different-amounts/m-p/34039#M18535</link>
      <description>&lt;P&gt;Is there anyway at all you could help me with the necessary code? I really need help. I'm getting very frustrated, because I'm not able to myself.&lt;BR /&gt;&lt;BR /&gt;Thanks for the reponses so far, Raynor!&lt;/P&gt;</description>
      <pubDate>Thu, 25 Apr 2013 08:44:56 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-Integration-with-different-amounts/m-p/34039#M18535</guid>
      <dc:creator>FredrixDesign</dc:creator>
      <dc:date>2013-04-25T08:44:56Z</dc:date>
    </item>
    <item>
      <title>Re: SIM Integration with different amounts</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-Integration-with-different-amounts/m-p/34040#M18536</link>
      <description>&lt;P&gt;There the&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.authorize.net/solutions/merchantsolutions/merchantservices/certifieddeveloperdirectory/" target="_self"&gt;Certified Developer Directory&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Apr 2013 11:12:13 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-Integration-with-different-amounts/m-p/34040#M18536</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2013-04-25T11:12:13Z</dc:date>
    </item>
    <item>
      <title>Re: SIM Integration with different amounts</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-Integration-with-different-amounts/m-p/34354#M18825</link>
      <description>&lt;P&gt;On your local checkout page, calculate the amount you want to submit:&lt;/P&gt;&lt;P&gt;&amp;lt;?php&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $totalcost = round($subtotal + $taxcost + $shipping,2);&lt;/P&gt;&lt;P&gt;?&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then pass that variable over to the AuthorizeNET form:&lt;/P&gt;&lt;P&gt;&amp;lt;?php&lt;/P&gt;&lt;P&gt;&amp;nbsp; $totalcost = round($subtotal + $taxcost + $shipping,2);&lt;/P&gt;&lt;P&gt;&amp;nbsp; $amount = $totalcost;&lt;/P&gt;&lt;P&gt;?&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2013 20:10:19 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/SIM-Integration-with-different-amounts/m-p/34354#M18825</guid>
      <dc:creator>DigitalDreams1</dc:creator>
      <dc:date>2013-05-24T20:10:19Z</dc:date>
    </item>
  </channel>
</rss>

