<html><body style="background: #d2d2d2;"><link rel="stylesheet" type="text/css" href="style.css"><center><h1>User List</h1></center><table><tr><th>Name</th><th>Cash</th><th>Score</th><?phpinclude('config.php');$query = mysql_query('select Name, Cash, Score from users');while($row = mysql_fetch_array($query)){?><tr> <td class="left"><?php echo $row['Name']; ?></td> <td class="left"><?php echo $row['Cash']; ?></td> <td class="left"><?php echo $row['Score']; ?></td></tr><?php}?></table></body></html>
Loading Info...