Guest User

Untitled

a guest
Apr 2nd, 2016
323
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <p>
  2.  
  3. Steam status
  4. <?php
  5.  
  6. $file = file_get_contents('http://is.steam.rip/api/v1/?request=IsSteamRip');
  7. $json = json_decode($file, true);
  8.  
  9. if(@$json['result']['community']=='false')
  10. {
  11. echo '<span style="color:green">Online</span>';
  12. }
  13. else
  14. {
  15. echo '<span style="color:red">Offline</span>';
  16. }
  17.  
  18. ?>
  19.  
  20. </p>
Advertisement
Add Comment
Please, Sign In to add comment