Advertisement
dganisha

Untitled

Oct 1st, 2017
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.70 KB | None | 0 0
  1. <?php
  2.  
  3. require_once("konak.php");
  4.  
  5. $url = 'http://portalpulsa.com/api/connect/';
  6.  
  7. $header = array(
  8. 'portal-userid: P',
  9. 'portal-key: bce', // lihat hasil autogenerate di member area
  10. 'portal-secret: d89f75e7e18', // lihat hasil autogenerate di member area
  11. );
  12.  
  13. $data = array(
  14. 'inquiry' => 'STATUS', // konstan
  15. 'trxid_api' => '', // Ini diambil dari database web saya..
  16. );
  17.  
  18. $ch = curl_init();
  19. curl_setopt($ch, CURLOPT_URL, $url);
  20. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  21. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
  22. curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
  23. curl_setopt($ch, CURLOPT_POST, 1);
  24. curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
  25. $result = curl_exec($ch);
  26.  
  27. echo $result;
  28. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement