I have a select in a result page the WHERE LIKE isn't working? This is the query I have: CFM Code: <cfquery name="getProducts" datasource="#application.dsn"> SELECT p.product_id, p.artist, p.title, p.publisher, p.release_date, p.condition, p.price, p.category_id, c.category, p.genre_id, g.genre FROM products p LEFT JOIN categories c ON p.category_id = c.category_id LEFT JOIN genres g ON p.genre_id = g.genre_id WHERE (artist LIKE '%#Form.txtSearch#%' OR title LIKE '%#Form.txtSearch#%'


