I have a table in html, I also have the pages in my db and it keeps track of the clicks.
How would I echo the top 5?
Right now I have this:
$get_clicks = mysql_fetch_array(mysql_query("SELECT * FROM `____` ORDER BY clicks DESC"));
So how would I echo the top 5 clicks?