A guy on Stack Overflow FINALLY got me a correct syntax after MANY failed attempts by a lot of people.
PHP Code:
 SELECT 
                
FROM table
                WHERE 
                
(title LIKE '%".$input."%') OR (description LIKE '%".$input."%' 
This is how you check two columns for the same user inputted search and return only the title.
Thanks guys