my-CakePHP
A blog tutorial on CakePHP - PHP Rapid Development Framework.
Showing posts with label
CakePHP Find Queries
.
Show all posts
Showing posts with label
CakePHP Find Queries
.
Show all posts
Saturday, February 13, 2010
How to Find Records using MySQL Match Against Query in CakePHP
To use MySQL Match Against Query in CakePHP:
$needle = 'Search String'
;
$conditions = array(
"MATCH(Post.title)
AGAINST('$needle' IN BOOLEAN MODE)"
);
$matches = $this->Post->find('all', array('conditions' => $conditions));
It does not need any explanation. I hope.
Older Posts
Home
Subscribe to:
Comments (Atom)