Products meeting the search criteria
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'AND p.products_id = p2c.products_id
AND p2c.categories_id = c.ca' at line 6
select count(p.products_id) as total from (products p
LEFT JOIN manufacturers m
USING(manufacturers_id), products_description pd, categories c, products_to_categories p2c ) WHERE (p.products_status = 1
AND p.products_id = pd.products_id
AND pd.language_id =
AND p.products_id = p2c.products_id
AND p2c.categories_id = c.categories_id AND ((pd.products_name LIKE '%texture%'
OR p.products_model
LIKE '%texture%'
OR m.manufacturers_name
LIKE '%texture%' OR pd.products_description
LIKE '%texture%') and (pd.products_name LIKE '%italy%'
OR p.products_model
LIKE '%italy%'
OR m.manufacturers_name
LIKE '%italy%' OR pd.products_description
LIKE '%italy%') and (pd.products_name LIKE '%cosplay%'
OR p.products_model
LIKE '%cosplay%'
OR m.manufacturers_name
LIKE '%cosplay%' OR pd.products_description
LIKE '%cosplay%') ))
[TEP STOP]