CodeIgniter Forums
CI-> Active Record Search Question - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: CI-> Active Record Search Question (/showthread.php?tid=29828)



CI-> Active Record Search Question - El Forum - 04-22-2010

[eluser]Mischievous[/eluser]
What would be the best way to use active record do produce a search query on the database which is weighted by the best possible match?


CI-> Active Record Search Question - El Forum - 04-22-2010

[eluser]Mischievous[/eluser]
Looking into MP_Search posted/created by Jelmer... but not sure how it all works... Would love a response from Jelmer! Smile


CI-> Active Record Search Question - El Forum - 04-22-2010

[eluser]Mat-Moo[/eluser]
I found this a very useful article for that http://devzone.zend.com/article/1304


CI-> Active Record Search Question - El Forum - 04-23-2010

[eluser]mddd[/eluser]
If you are searching in full text, use Mysql's MATCH function. It automatically returns results in 'best match' order.


CI-> Active Record Search Question - El Forum - 04-23-2010

[eluser]Mischievous[/eluser]
Mat-Moo NICE resource... i really appreciate you sharing that.


CI-> Active Record Search Question - El Forum - 04-24-2010

[eluser]Mat-Moo[/eluser]
Your welcome.