hello mate,
im having problem making a search criteria work....
i have a field named fullname, inside that field i have a data eg: "Robert Williams"
Im trying to use LIKE on mysql statement such as
SELECT fullname FROM clients WHERE fullname LIKE '%keyword%' keyword being any character from the name "Robert Williams". but when i tried to search "Williams R" it will not show me "Robert Williams"...
Then, how can i make it so that when i search for "Williams R" it will also show me "Robert Williams"
What im trying to attain here is to search any name in any order whether firstname first of lastname first.
Thank you in advance.
Cheers!
Neil