This is basically what I want to do:
I want to count the number of times a username is displayed when I do
SELECT starter FROM threads WHERE starterid!=0 AND boardid IN (4, 6, 7, 9, 36, 37, 38, 40, 49, 60)
After that, I then want to sort it based on the amount of instances of the username
i.e it would be displayed (on a php page 😉)
name----|number
-----------|---------
lala--------| 83-----
lala1-------| 81----
lala2-------| 78----
How would I begin trying to do this? Sorry, I am a newbie 🙁
Thanks 😃