Basically i want to add wildcards to the the col value when searching...
Usually I do this the other way around like this:
WHERE cakes.cake_name LIKE '%$cake_search%'
however now i want it to match the inverse:
the user searches for '
treacle sponge
', i want this to match a row where thecake_name
column = 'sponge
'.
is this possible?