Product Rankings Widget or Table

by 1 replies
1
i want to add a "top 10" ranked products widget or table to my product review site.

what I'm looking for is a table or widget that will allow me to rank 1-10 the products on my site

ex:

1. Product (clickable)
2. Product (clickable)
3. Product (clickable)
4. Product (clickable)
5. Product (clickable)
6. Product (clickable)
7. Product (clickable)
8. Product (clickable)
9. Product (clickable)
10. Product (clickable)

any recommendations?
#website design #product #rankings #table #widget
  • I would suggest using a HTML list:

    <ol>
    <li>Product</li>
    <li>Product</li>
    <li>Product</li>
    </ol>

    The numbers will automatically be generated due to the <ol> tag being used.

    You can either list them manually and update them manually or use PHP+MySQL to echo database values directly into the list.

    This would require some coding knowledge however.

Next Topics on Trending Feed