Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- error_reporting(0);
- $usuario = $_GET["usuario"];
- $page= file_get_contents("https://steamcommunity.com/id/$usuario");
- echo"Jugando: ";
- $jugando = explode ('<div class="profile_in_game_name">', $page);
- $jugando = explode ('</div>', $jugando[1]);
- echo $jugando[0];
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement