Advertisement
irokemr

Steam nivel php

Dec 29th, 2020
1,980
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 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.  
  9. echo"Nivel: ";
  10. $steamNivel = explode ('<span class="friendPlayerLevelNum">', $page);
  11. $steamNivel = explode ('</span>', $steamNivel[1]);
  12.  
  13. echo $steamNivel[0];
  14.  
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement