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");
- $steamAvatar = explode ('<link rel="image_src" href="', $page);
- $steamAvatar = explode ('"', $steamAvatar[1]);
- echo $steamAvatar[0];
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement