JakRapp

http://www.elindevarmi.com/check.php?bin=

Dec 11th, 2017
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.48 KB | None | 0 0
  1. // http://www.elindevarmi.com/check.php?bin=
  2. function cek($bin){
  3.   $ch = curl_init();
  4.   curl_setopt($ch, CURLOPT_URL, "http://www.elindevarmi.com/check.php?bin=".$bin);
  5.   curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  6.   $data = curl_exec($ch);
  7.   curl_close ($ch);
  8.   return $data;
  9. }
  10. $bin = str_replace(' ', '', $_POST['ccno']);
  11. $bin = substr($bin, 0, 6);
  12. $anu = json_decode(cek($bin));
  13. $ccbrand = $anu->brand;
  14. $ccbank  = $anu->type;
  15. $cctype  = $anu->bank;
  16. $ccklas  = $anu->level;
Add Comment
Please, Sign In to add comment