I am trying to implement a search form on my website.
Using the codeigniter active record and mysql I perform the following function in my model:
$search_query = 'charge fees for project';
function get_search_results($search_query){
$data = '';
$this->db->like('title', $search_query);
$this->db->or_like('content', $search_query);
$query = $this->db->get('faq');
foreach ($query->result() as $row) {
$data[] = array(
'id' => $row->id,
'category' => $row->category,
'sub_category' => $row->sub_category,
'title' => $row->title,
'content' => $row->content,
'date' => $row->date
);
}
return $data;
}
In my database I have a row that contains the following data:
row->title - What fees does the website charge?
row->content - We charges total fees. When your account is successfully project created.
My search query returns no results even though these keywords are present in both the title and content. How can I get my search query to pick out the keywords in the database entry and return the result???

charge fees for projectdoesn't appear as a whole in the title nor content. – Yan Jun 27 '12 at 13:29