I'm trying to get to show the staff stats, how many bans they have made and how many handle cfh they've handled
I know I would to have to echo them out I believe to have a cleaner code but I need more help
Here is what I have so far
Image:
I know I would to have to echo them out I believe to have a cleaner code but I need more help
Here is what I have so far
PHP:
<?php
$getUserInfo = mysql_query("SELECT * FROM `users` WHERE rank >=4 LIMIT 5");
while ($userInfo= mysql_fetch_assoc($getUserInfo))
{
echo '
<div style="padding:5px;">
<strong><a href="##">' .$userInfo['username'] . '</a></strong> has banned <strong></strong> users and handled <strong>1</strong> call for help tickets.
<br/>
<hr>';
}
?>
Image: