Hi, I have a simple shopping-cart style page (self built) that simply queries a mysql database and returns a dataset of matching products.
The user can currently search for some text .. i.e. "red" and then my page returns all the products that contain "red".
At the moment, that is all it does.
I would like to offer the ability to narrow down the search results by price range/manufacturer/colour/size etc.
You can then go as far as select multiple 'attributes' to only show red shoes, priced between £50-£100 from manufacturer D&G. (and also then remove these criteria to broaden your search again)
(Some examples are ebay, Debenhams, Halfords etc etc).
I have found one solution, but it requires me to manually code in all the lists of colours/prices/manufacturers etc, but I am sure this could be dynamically created, i just don't know how.
Any help would be appreciated!
Thanks
Tom