<?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: Custom Receipts in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Custom-Receipts/m-p/34006#M18502</link>
    <description>&lt;P&gt;Ok I have tried doing a simple INSERT query into my db from the relay response page but now I do not get redirected and it keeps me at&amp;nbsp;&lt;A target="_blank" href="https://secure.authorize.net/gateway/transact.dll"&gt;https://secure.authorize.net/gateway/transact.dll&lt;/A&gt; and nothing gets inserted in my db.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I added the INSERT statement right after&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; if ($response-&amp;gt;isAuthorizeNet()) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;using this approach to try and capture the values and insert into my db&lt;/P&gt;&lt;P&gt;$response-&amp;gt;amount&amp;nbsp;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 22 Apr 2013 20:52:00 GMT</pubDate>
    <dc:creator>carder</dc:creator>
    <dc:date>2013-04-22T20:52:00Z</dc:date>
    <item>
      <title>Custom Receipts</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Custom-Receipts/m-p/33994#M18490</link>
      <description>&lt;P&gt;I am currently using DPM and the processing of a transaction is working just fine. &amp;nbsp;I am also using relay_response that then takes me to my own receipt page. &amp;nbsp;I would like to display transaction details on this page for the user but can't figure out how to get that information included there. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using the basic PHP code from the manual so the only thing that displays is the transaction code through "Transaction id: ".htmlentities($_GET['transaction_id'])"&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried using this same code to display amount but just haven't been able to figure it out. &amp;nbsp;How can I get these fields to appear on my receipt page? &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 21 Apr 2013 12:16:35 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Custom-Receipts/m-p/33994#M18490</guid>
      <dc:creator>carder</dc:creator>
      <dc:date>2013-04-21T12:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Receipts</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Custom-Receipts/m-p/33998#M18494</link>
      <description>&lt;P&gt;If you have the transaction ID, you can look up the transaction using the Transaction Details API. Alternately, if you were smart and stored the important parts of the transaction on the relay response page, then you can just look up the transaction in your own database.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2013 16:37:54 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Custom-Receipts/m-p/33998#M18494</guid>
      <dc:creator>TJPride</dc:creator>
      <dc:date>2013-04-22T16:37:54Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Receipts</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Custom-Receipts/m-p/34006#M18502</link>
      <description>&lt;P&gt;Ok I have tried doing a simple INSERT query into my db from the relay response page but now I do not get redirected and it keeps me at&amp;nbsp;&lt;A target="_blank" href="https://secure.authorize.net/gateway/transact.dll"&gt;https://secure.authorize.net/gateway/transact.dll&lt;/A&gt; and nothing gets inserted in my db.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I added the INSERT statement right after&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; if ($response-&amp;gt;isAuthorizeNet()) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;using this approach to try and capture the values and insert into my db&lt;/P&gt;&lt;P&gt;$response-&amp;gt;amount&amp;nbsp;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2013 20:52:00 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Custom-Receipts/m-p/34006#M18502</guid>
      <dc:creator>carder</dc:creator>
      <dc:date>2013-04-22T20:52:00Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Receipts</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Custom-Receipts/m-p/34011#M18507</link>
      <description>&lt;P&gt;In trying to see if any of the values I am looking for exist on the relay page I changed the redirect url to&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;$redirect_url .= '?response_code=1&amp;amp;transaction_id=' .&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$response-&amp;gt;transaction_id.'item='.$response-&amp;gt;amount;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This works just fine and gives me a value for amount within the url but if I change it from&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; $response-&amp;gt;amount; to&amp;nbsp;&lt;SPAN&gt;$response-&amp;gt;first_name; &amp;nbsp;this section of the url is blank&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2013 21:39:29 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Custom-Receipts/m-p/34011#M18507</guid>
      <dc:creator>carder</dc:creator>
      <dc:date>2013-04-22T21:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Receipts</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Custom-Receipts/m-p/34019#M18515</link>
      <description>&lt;P&gt;Ok found the answer in here...had to change my db connection as is mentioned in the following post.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="http://community.developer.authorize.net/t5/Integration-and-Testing/Update-database-via-SIM-Method/td-p/11260"&gt;http://community.developer.authorize.net/t5/Integration-and-Testing/Update-database-via-SIM-Method/td-p/11260&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Apr 2013 20:18:26 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Custom-Receipts/m-p/34019#M18515</guid>
      <dc:creator>carder</dc:creator>
      <dc:date>2013-04-23T20:18:26Z</dc:date>
    </item>
  </channel>
</rss>

