Hey,
I know most of the time people just do a
LIKE '%$search_query%'
but see the thing is, in my case someone may be searching for things like
that cow is fat
now, the thing is in my database i wouldnt be storing it exactly as "the cow is fat" i'd be storing it something like "fat cow" so using
LIKE '%$search_query%'
wouldn't work.
Can anyone point me in the right direction for an efficient way to search my database like I have explained?
Thanks