Hi All
I am working on a search box that searches the db by keywords and manufacturer name.
Now I can have got that to work, my problem however is adding the option to search by all manufacturers.
Is there a value that I can submit via the form to show records from all manufacturers.
this is my query
Im guessing I will end up having to use some fancy show if kind of stuff
Thanks
Aaron
I am working on a search box that searches the db by keywords and manufacturer name.
Now I can have got that to work, my problem however is adding the option to search by all manufacturers.
Is there a value that I can submit via the form to show records from all manufacturers.
this is my query
Code:
SELECT *
FROM productquery
WHERE manu_name LIKE '%MMColParam2%' and smalldes LIKE '%MMColParam%'
ORDER BY currentprice DESC
Im guessing I will end up having to use some fancy show if kind of stuff
Thanks
Aaron