Advertisement
irokemr

Steam jugando php

Dec 29th, 2020
1,165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. <?php
  2.  
  3. error_reporting(0);
  4. $usuario = $_GET["usuario"];
  5. $page= file_get_contents("https://steamcommunity.com/id/$usuario");
  6.  
  7.  
  8. echo"Jugando: ";
  9. $jugando = explode ('<div class="profile_in_game_name">', $page);
  10. $jugando = explode ('</div>', $jugando[1]);
  11.  
  12. echo $jugando[0];
  13.  
  14. ?>
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement