here you go
PHP Code:
<?php
$userq = mysql_query("SELECT * FROM user_stats");
while($user = mysql_fetch_array($userq))
{
?>
<div class="StaffBox">
<div class="UsersCreated"><strong>Time Online:</strong> <?php echo $user['OnlineTime']; ?></div>
<div class="UsersCreated"><strong>Room Visits:</strong> <?php echo $user['RoomVisits']; ?></div>
<div class="UsersCreated"><strong>Respects:</strong> <?php echo $user['RespectGiven']; ?></div>
<div class="UsersCreated"><strong>Gifts Given:</strong> <?php echo $user['GiftsGiven']; ?></div>
<div class="UsersCreated"><strong>Gifts Recieved:</strong> <?php echo $user['GiftsReceived']; ?></div>
<div class="UsersCreated"><strong>Achievement Score:</strong> <?php echo $user['AchievementScore']; ?></div>
</div>
<?php
}
?>
</div>