[PHP] Fulltext search engine

2005-04-12 Thread Roman Duriancik
I need in my own web server with mysql database and php script some free fulltext engine. But i need search in slovak language (all data in database in slovak). Can yopu help me where i can find some free fulltext engine ? roman -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] Fulltext search engine

2005-04-12 Thread Marek Kilimajer
Roman Duriancik wrote: I need in my own web server with mysql database and php script some free fulltext engine. But i need search in slovak language (all data in database in slovak). Can yopu help me where i can find some free fulltext engine ? roman

[PHP] Fulltext-Search

2001-12-24 Thread Martin
Hello! Does anybody know a good script to search the own web-server?! Would be nice if the script could display the whole sentence where the word was found... Martin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

Re: [PHP] Fulltext-Search

2001-12-24 Thread Bogdan Stancescu
http://www.htdig.org/ Martin wrote: Hello! Does anybody know a good script to search the own web-server?! Would be nice if the script could display the whole sentence where the word was found... Martin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

Re: [PHP] Fulltext-Search

2001-12-24 Thread Miles Thompson
htdig or mnogo At 10:13 PM 12/23/2001 +0100, Martin wrote: Hello! Does anybody know a good script to search the own web-server?! Would be nice if the script could display the whole sentence where the word was found... Martin -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] Fulltext-Search

2001-12-24 Thread Miles Thompson
Lauri, Very impressive. Merry Christmas - Miles Thompson At 03:03 AM 12/25/2001 +0200, Lauri Vain wrote: Hello Martin, At 10:13 PM 12/23/2001 +0100, Martin wrote: Hello! Does anybody know a good script to search the own web-server?! Would be nice if the script could display the whole

Re: [PHP] FULLTEXT search sorting results

2001-09-04 Thread BRACK
Actually it doesn't matter '' or 'and' they are equal but I found a solution - I just took away conditions and put this instead $relev = $title_search+$descr_search+$act_search; $result = mysql_query(SELECT skits.*,category.*,match (skits.title,skits.descr,skits.skits) against ('$relev') as

[PHP] FULLTEXT search sorting results

2001-09-03 Thread BRACK
Hi, I asked recently to help with the selection for FULLTEXT search and now with your help I found how to do that but I still have problem with advansed search. This is what I have right now: $result = mysql_query(SELECT skits.*,category.* from skits,category where (skits.title like

Re: [PHP] FULLTEXT search sorting results

2001-09-02 Thread BRACK
Works fine, thank you Youri On Sat, 1 Sep 2001 14:01:57 +0200, BRACK ([EMAIL PROTECTED]) wrote: I have query - $res = mysql_query(SELECT skits.*,category.cat_id,category.cat_name FROM skits,category WHERE MATCH (title,descr,skits) AGAINST ('%$search_idea%') and skits.lang like 'English'

[PHP] FULLTEXT search sorting results

2001-09-01 Thread BRACK
I have query - $res = mysql_query(SELECT skits.*,category.cat_id,category.cat_name FROM skits,category WHERE MATCH (title,descr,skits) AGAINST ('%$search_idea%') and skits.lang like 'English' and skits.category like category.cat_id limit $limit,10 ); I expect to get results sorted by

Re: [PHP] FULLTEXT search sorting results

2001-09-01 Thread Mark Maggelet
On Sat, 1 Sep 2001 14:01:57 +0200, BRACK ([EMAIL PROTECTED]) wrote: I have query - $res = mysql_query(SELECT skits.*,category.cat_id,category.cat_name FROM skits,category WHERE MATCH (title,descr,skits) AGAINST ('%$search_idea%') and skits.lang like 'English' and skits.category like