I was wondering if its possible to display a featured item from mysql table.
Table , links (id, item, hits)
How i could i display 5 links which have bigest numbers ?
Is this possible ? I only need query sample, not the entire code.
Thank you.
SELECT link FROM tbl ORDER BY hits DESC LIMIT 5
Thank you very much. Solved