Advertisement
Guest User

Untitled

a guest
Apr 29th, 2019
737
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <?php
  2. $url = 'https://accgen.cathook.club/api/v1/account/demo';
  3. $json = implode('', file($url));
  4. $obj = json_decode($json);
  5. $link = 'https://steamcommunity.com/profiles/' . $obj->steamid;
  6. echo 'Username: ' . $obj->login . '<br>';
  7. echo 'Password: ' . $obj->password . '<br>';
  8. echo 'Steam Profile: <a href='.$link.'>'.$link.'</a>';
  9. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement