hi gurus i need your help u guys. i need to develop a search page. the thong is that when i write any text in the search input it will show me the result populated from the content field. suppose if i give "saving" in the search , then it will show me the all result where saving word is written. can it be possible?? pls help me i am using php and mysql
Here is a query example that will make things a bit clearer : mysql_query("SELECT * FROM your_table WHERE field1 LIKE '%".$serch_word."%' OR field2 LIKE '%".$search_word."%'"); PHP: