Guest User

Untitled

a guest
Jan 13th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. <?php
  2. $users = mysql_query("SELECT * FROM players WHERE id='2'");
  3. while ( $player = mysql_fetch_array($users) ) {
  4.  
  5.    
  6.     echo '<b> <a href="viewprofile.php?userid='.$player['id'].'">'.$player['id'].'</a></b><br>';
  7.  
  8.  
  9. }
  10. ?>
Add Comment
Please, Sign In to add comment