Page 1 of 1

webpage search tool

Posted: Sun Dec 19, 2004 9:08 pm
by C_Calav
hey guys,

i need some help as to where to start with codeing a internal search for my website.

can anyone suggest and sites or anything to help me get started. i did some difgging around but cant find any kind of tutorial or sumthing.

thanx guys

Posted: Sun Dec 19, 2004 9:48 pm
by Appletalk
Look at the PHPDig project.
http://www.phpdig.net

Good luck

Posted: Mon Dec 20, 2004 9:51 am
by pickle
If you're using a MySQL database, it has the functionality to do a full text search. All you do is set up full text indices on a given table, then run a certain query on that table. MySQL can then return all fields in the table that match, in order of relevancy.

Check it out: [mysql_man]FULL TEXT SEARCH[/mysql_man]