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
webpage search tool
Moderator: General Moderators
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]
Check it out: [mysql_man]FULL TEXT SEARCH[/mysql_man]
Real programmers don't comment their code. If it was hard to write, it should be hard to understand.