Advertisement
Guest User

Untitled

a guest
Jul 11th, 2014
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. <?php
  2.  
  3. function checkGTPayTransaction($gtpay_merchant_id, $amount,$trans_id, $hash) {
  4.     $gtpayServiceRequest = file_get_contents(sprintf("http://gtweb2.gtbank.com/GTPayService/gettransactionstatus.json?mertid=%s&amount=%s&tranxid=%s&hash=%s",
  5.                   $gtpay_merchant_id, $amount,$trans_id,$hash
  6.                   ));
  7.  
  8.     if($gtpayServiceRequest) {
  9.         return json_decode($gtpayServiceRequest);
  10.     }
  11.  
  12.     return null;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement