Advertisement
Guest User

Untitled

a guest
Mar 6th, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <?php
  2.  
  3. $user = 'root';
  4. $password = '';
  5. $db = 'CSGO_Database';
  6.  
  7. $database = new mysqli('localhost', $user, $password, $db) or die();
  8.  
  9. $jsonData = file_get_contents("skins.json");
  10. $json = json_decode($jsonData,true);
  11. echo $json['response']['items']['AK-47 | Aquamarine Revenge (Battle-Scarred)']['value'];
  12.  
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement