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 http://dev.mysql.com/doc/mysql/en/fulltext-se

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

2001-12-24 Thread Lauri Vain
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 sentence where the >word was found... If you want to have more hands on fun then check out the following class/how

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 unsu

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: [E

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')

Re: [PHP] FULLTEXT search sorting results

2001-09-03 Thread Mark Maggelet
On Mon, 3 Sep 2001 19:33:38 +0200, BRACK ([EMAIL PROTECTED]) wrote: >$result = mysql_query("SELECT skits.*,category.*,match >(skits.title,skits.descr,skits.skits) against ('$relev') as from oops, should be 'against ('$relev') as relevance from' >skits,category where (skits.title like '%$title_

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 '

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 catego