Advertisement
albin900

PHP HTTPTOOLS TUTORIAL FILE 2

Feb 24th, 2014
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <h2>Scoreboard</h2>
  2. <?php
  3. // URL: http://dev.bukkit.org/bukkit-plugins/httptools
  4.  
  5. $db = "mc_db.php";
  6.  
  7. include($db);
  8.  
  9. $user_count = count($player);
  10. for($i=0;$i<$user_count;$i++){
  11. $p = $player[$i];
  12. echo $player[$i] . " = " . $data[$p] . "<br>";
  13. }
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement