2012-07-03 68 views
0

的申請時用戶訪問我使用一個PayPal來處理使用類似下面的一個表單上我的網站付款。我的網站是一個服務提供商那裏,以便用戶創建一個帳戶,用戶必須提交付款,這讓他們完全訪問的網站提供的服務。我在想,如果有一個簡單的方法,以確保支付已使用下面的表單實際創建用戶帳戶和授權用戶訪問之前處理?第三方支付處理和支付完成

  <form action="https://www.paypal.com/cgi-bin/webscr" method="post"> 
       <input type="hidden" name="cmd" value="_xclick"> 
       <input type="hidden" name="business" value="[email protected]"> 
       <input type="hidden" name="lc" value="US"> 
       <input type="hidden" name="item_name" value="apples"> 
       <input type="hidden" name="item_number" value="1701"> 
       <input type="hidden" name="amount" value="119.00"> 
       <input type="hidden" name="currency_code" value="USD"> 
       <input type="hidden" name="button_subtype" value="services"> 
       <input type="hidden" name="no_note" value="0"> 
       <input type="hidden" name="tax_rate" value="0.000"> 
       <input type="hidden" name="shipping" value="0.00"> 
       <input type="hidden" name="bn" value="PP-BuyNowBF:btn_buynow_SM.gif:NonHostedGuest"> 
       <input type="image" src="http://www.zaptel.com/zaptel/customer/zaptel/images/btn_checkout.gif" border="0" name="submit"> 
       <img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1"> 
      </form> 

回答