I have the following two colums in my database table.
name = "Alex"
skills= "medical,electronics,books,technology"
Now my question is about to search for a word in the above skill field. If a user types something in the search box, my query will search for a exact whole comma separated word in database table (skills field) not a part of word. For example, if a user types medi, the query should return false but if he types medical or books,then the query should return true as medical or books are both present there.
So can anyone tell me how it can be done in PHP. Also forgive me if I made a mistake as my English is not so strong.
Thanks.