Re: [PHP] Re: AND OR NOT

2005-09-06 Thread John Taylor-Johnston
Jasper Bryant-Greene wrote: John Taylor-Johnston wrote: I'm under pressure to permit AND, OR & NOT. My research group insists that MySQL 4 syntax is "not good enough". An idea of what one might enter is here (on the bottom): http://compcanlit.usherbrooke.ca/advanced.html I was hoping to get

Re: [PHP] Re: AND OR NOT

2005-09-05 Thread Jasper Bryant-Greene
John Taylor-Johnston wrote: David, I'm under pressure to permit AND, OR & NOT. My research group insists that MySQL 4 syntax is "not good enough". An idea of what one might enter is here (on the bottom): http://compcanlit.usherbrooke.ca/advanced.html I was hoping to get away with replacin

[PHP] Re: AND OR NOT

2005-09-05 Thread John Taylor-Johnston
David, I'm under pressure to permit AND, OR & NOT. My research group insists that MySQL 4 syntax is "not good enough". An idea of what one might enter is here (on the bottom): http://compcanlit.usherbrooke.ca/advanced.html I was hoping to get away with replacing " AND " with "+", " NOT " w

[PHP] Re: AND OR NOT

2005-09-05 Thread John Taylor-Johnston
David, I'm under pressure to permit AND, OR & NOT. My research group insists that MySQL 4 syntax is "not good enough". An idea of what one might enter is here (on the bottom): http://compcanlit.usherbrooke.ca/advanced.html I was hoping to get away with replacing " AND " with "+", " NOT " w

[PHP] Re: AND OR NOT

2005-09-05 Thread David Robley
John Taylor-Johnston wrote: > Any ideas? Post kind of lost in there since Saturday. Is str_replace the > best choice for case sensitive and for swapping " AND "? > >> >> >> Any suggestion on how to swap AND OR NOT for mysql fulltext syntax in >> $searchenquiry? >> A simple parse for " AND " and

[PHP] Re: AND OR NOT

2005-09-05 Thread John Taylor-Johnston
Any ideas? Post kind of lost in there since Saturday. Is str_replace the best choice for case sensitive and for swapping " AND "? Any suggestion on how to swap AND OR NOT for mysql fulltext syntax in $searchenquiry? A simple parse for " AND " and then str_replace? Is str_replace appropriate