Product Rankings Widget or Table

1 replies
  • WEB DESIGN
  • |
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?
#product #rankings #table #widget
  • Profile picture of the author Nathan Joshua
    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.
    {{ DiscussionBoard.errors[5944647].message }}

Trending Topics