Re: [PHP] Faking Boolean

2006-04-06 Thread John Taylor-Johnston
Thanks! Your first appraoch seems to make clearer sense for me. Great pinch hit, John Paul Novitski wrote: If you're splitting your search string into discrete words, most search engine logic doesn't require quotes. Typically, quotation marks combine multiple words into single expressions, wh

Re: [PHP] Faking Boolean

2006-04-06 Thread Paul Novitski
At 11:08 PM 4/5/2006, John Taylor-Johnston wrote: How can I take enquiry: or and parse its value to come up with this to do a boolean search +"john" or +"john" +"johnston" John, If you're splitting your search string into discrete words, most search engine logic doesn't require quotes.

[PHP] Faking Boolean

2006-04-05 Thread John Taylor-Johnston
How can I take enquiry: or and parse its value to come up with this to do a boolean search +"john" or +"john" +"johnston" Does there exist a function yet :) ? I suppose I could explode $searchenquiry for spaces and reassemble the bits? -- PHP General Mailing List (http://www.php.net/) To