Advertisement
Kimeraweb

Pepixicho Ranking

Jul 1st, 2017
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.54 KB | None | 0 0
  1. // Fichero 1, config.php
  2.  
  3. <?php
  4. mysql_connect($serverIP,$user,$password) or DIE ("No se pudo establecer conexion con el servidor.");
  5. mysql_select_db($dbaseName) or DIE ("No se pudo conectar a la base de datos.");
  6. ?>
  7.  
  8. // Fichero 2, mostrarRanking.php
  9.  
  10. <?php
  11.  
  12. require("config.php");
  13. $query = mysql_query("Select * from ranks order by points Desc");
  14.  
  15. echo "<table>";
  16.  
  17. while ($a=mysql_fetch_array($query))
  18. {
  19.     echo "<tr><td>Name</td><td>".$a['lastDisplayName']."</td><td>Points:</td><td>".$a['points']."</td></tr>";
  20. }
  21.  
  22. echo "</table>";
  23. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement