sumit
sumit

Reputation: 11257

How to show search results?

I am working on an e-commerce website. While searching for a product, the results are shown on the results page after checking with the database. Is there any software/code/library available to get the following things done:

  1. Search results split over several pages with page numbers (1, 2...)
  2. Search results having filter criteria like brand name, price range etc.
  3. When user selects for different filer criteria (like price range or brand name or sort by price), the page should not refresh and update the results there itself.
  4. Any other relevant functionality (like "sort by price" feature, "list or grid view" feature)

Upvotes: 0

Views: 368

Answers (2)

CResults
CResults

Reputation: 5105

Look at jQuery and http://www.datatables.net

Upvotes: 4

marto
marto

Reputation: 4493

  1. Paging
  2. Display a list of filter options, filter results accordingly.
  3. AJAX
  4. Sortable grid

Upvotes: -2

Related Questions