I'm developing a Meet the Team page for my website. Here's how it looks so far (http://prntscr.com/gynyrj).
As you can see, it's in descending order. But, what I'm trying to achieve is so that each new level would go onto the next row. e.g. administrators level 7 at the top, administrators level 6 on the next row, administrators level 5 on the next and so on..
Something like this (http://prntscr.com/gyo1pc)
$query = $con->prepare("SELECT * from playerdata WHERE pAdmin >= 1 ORDER BY
`pAdmin` DESC");
$query->execute();
while($data = $query->fetch())
{
...panel code
}
Regards,
Daniel