Let's say I have a search page with a single field on it labeled search. If I search for computer, wireless, I get all results that have either computer and/or wireless in them. If I want only the results that have computer and wireless in them what is the best way to fo this. Below is my mysql query
SELECT *
FROM resources
WHERE match (name, keywords ) against ('search*' in boolean mode)
ORDER BY resources.Name
The (search*) is the variable that is passed from the search page. in this case it would be computer+wireless