This is what I currently have..
PHP Code:
SELECT * FROM campgrounds WHERE (`name` LIKE'%$find%') OR (`city` LIKE'%$find%') OR (`notes` LIKE'%$find%') OR (`moreinfo` LIKE'%$find%') OR (`amenities` LIKE'%$find%') ORDER BY `name`
Using this search..
I would search for New Old Town and it would give me 0 results.
if I just search town I get 15 results
if I search just old I get 20 results
and if I search for new I get 7 results.
Not sure what I have done wrong.
Thanks... all help appreciated.
Slayer.