Advertisement
Guest User

Untitled

a guest
Oct 25th, 2014
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.73 KB | None | 0 0
  1.  <?php
  2. /**
  3.  * Created by ApiNo1.Net.
  4.  * Date: 5/8/14
  5.  * Time: 12:50 AM
  6.  */
  7. // We used GET Method in this PHP script
  8. // You can use POST Method / CURL
  9. $url = 'http://apino1.net/api/'; // API URL (Show on TABLE information of this page)
  10. $user = "Your Username"; // Your Username
  11. $pass = "Your Password"; // Your Password
  12. $code = "ccv4"; // API CODE (Show on TABLE information of this page)
  13.  
  14. // information of your card
  15. $card = "4342562156578732|12|2015|581";  // this is example card
  16.  
  17. // Fetch result from our API
  18. $data = "$url?user=$user&pass=$pass&code=$code&card=$card";
  19. $result = file_get_contents($data);
  20.  
  21. /** Results from API :
  22.  * LIVE
  23.  * DIE
  24.  * EXPIRED
  25.  * UNKNOWN
  26.  * DEPOSIT
  27.  * API ERROR
  28.  */
  29. echo $result;
  30. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement