Using PHP and Databases, I have a simple search query statement :
SELECT * FROM products WHERE LOWER(product_title) LIKE '%$search%';
E.g product title: 'Red Apples Tree'
e.g search 1: '
red apples
outputs the title successfully
e.g search 2:
'red tree'
does not output anything, but the words are in the title.
Where is the problem in this?