Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <p>
- Steam status
- <?php
- $file = file_get_contents('http://is.steam.rip/api/v1/?request=IsSteamRip');
- $json = json_decode($file, true);
- if(@$json['result']['community']=='false')
- {
- echo '<span style="color:green">Online</span>';
- }
- else
- {
- echo '<span style="color:red">Offline</span>';
- }
- ?>
- </p>
Advertisement
Add Comment
Please, Sign In to add comment