Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2015
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2. $url = 'http://torrent2dl.ml/json.php';
  3. $JSON = file_get_contents($url);
  4.  
  5. // echo the JSON (you can echo this to JavaScript to use it there)
  6. echo $JSON;
  7.  
  8. // You can decode it to process it in PHP
  9. $data = json_decode($JSON);
  10. var_dump($data);
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement