So I want to be able to search through my database on my site.
Essentially I want it to work like this, someone makes a search query, then I want to only show results that contain each keyword, at least once within the title or description fields.
So I assume first I break the search query into an array, then each element of the array is checked to see if it is contained in the title or description of each row.
Then a check is done to make sure that all elements of the array have occurred in the title or description. Then these are the results I want to display.
Is that clear enough?