获取 Authorize.net 中的交易 ID 以显示在我的系统收据中/

问题描述 投票:0回答:0

Authorize.net 未结算交易中的交易ID如何获取?我希望包括并显示与系统一起完成的每笔交易的每笔收据的每笔交易 ID,

 `<h2>Cashout Receipt</h2>
  <div class="snipcart-item block">
  <div class="w3agile_description">
  <div id="printableArea">
  <table id="datatable"  class="table table-striped table-bordered dataTable" cellspacing="0" width="100%"            role="grid" aria-describedby="example_info" style="width: 100%;" >        
   <tr>
   <th colspan="3"><center>Online Bidding Reciept</center></th>
   
   </tr>
   <tr>
   <td colspan="3"><center><b>User :</b> <?php echo $rspayment['user_name']; ?></td>
   </tr>
    <tr>
        <td><b>Bill No.</b> <?php echo $rspayment['billing_id']; ?> </td>
        <td><b>Date</b>  <?php echo $rspayment['purchase_date']; ?></td>
    </tr>
        <tr>
        <th><b>Paid amount</b></th>
        <td>₱ <?php echo $rspayment['purchase_amount']; ?>
        </td>
        </tr>
    <tr>
    <tr>

    </tr>
   </table>
   </div>`

不是特别熟悉 authorize.net 中的流程,并尝试了解 Authorize.net Documentations

php transactions authorize.net
© www.soinside.com 2019 - 2024. All rights reserved.