Advertisement
Guest User

Untitled

a guest
Jul 28th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <?php
  2.  
  3. $guid="xxxxxxxxx";
  4. $main_password="xxxxxxxxx";
  5.  
  6. $json_url = "https://blockchain.info/merchant/$guid/balance?password=$main_password";
  7.  
  8. $json_data = file_get_contents($json_url);
  9.  
  10. $json_feed = json_decode($json_data);
  11.  
  12. $balance = $json_feed->balance;
  13.  
  14. echo $balance;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement