below you can see my working query:
$result=dbquery("SELECT p.product_id, p.product_title, p.product_image1_t1, cr.*, c.campaign_allow_mobilepayment,c.campaign_end_date
FROM ".DB_MYAPP_PRODUCTS."
p INNER JOIN ".DB_MYAPP_CAMPAIGN_RELATIONS." cr ON cr.item_id=p.product_id
LEFT JOIN ".DB_MYAPP_CAMPAIGNS." c ON cr.campaign_id=c.campaign_id
LEFT JOIN ".DB_MYAPP_PRODUCT_CATS." pc ON pc.product_cat_id=p.product_cat_id
LEFT JOIN ".DB_MYAPP_BRANDS." b ON b.brand_id=pc.product_cat_brand_id
WHERE
AND cr.item_type='2'
AND c.campaign_start_date<=".time()."
AND c.campaign_end_date>'".time()."'".($brand_id!=0?" AND b.brand_id='".$brand_id."'":"").($cat_id!=0?"
AND p.product_cat_id='".$cat_id."'":"").($color_id!=0?"
AND p.product_color='".$color_id."'":"")."
ORDER BY
item_order DESC LIMIT ".$rowstart.",".$limit);
I need to add some OR statlements, but didn't work...
$result=dbquery("SELECT p.product_id, p.product_title, p.product_image1_t1, cr.*, c.campaign_allow_mobilepayment,c.campaign_end_date
FROM ".DB_MYAPP_PRODUCTS." p
INNER JOIN ".DB_MYAPP_CAMPAIGN_RELATIONS." cr ON cr.item_id=p.product_id
LEFT JOIN ".DB_MYAPP_CAMPAIGNS." c ON cr.campaign_id=c.campaign_id
LEFT JOIN ".DB_MYAPP_PRODUCT_CATS." pc ON pc.product_cat_id=p.product_cat_id
LEFT JOIN ".DB_MYAPP_BRANDS." b ON b.brand_id=pc.product_cat_brand_id
WHERE
product_select1=".$option."
OR product_select2=".$option."
OR product_select3=".$option."
OR product_select4=".$option."
OR product_select5=".$option."
OR product_select6=".$option."
OR product_select7=".$option."
OR product_select8=".$option."
OR product_select9=".$option."
OR product_select10=".$option."
AND cr.item_type='2'
AND c.campaign_start_date<=".time()."
AND c.campaign_end_date>'".time()."'".($brand_id!=0?" AND b.brand_id='".$brand_id."'":"").($cat_id!=0?"
AND p.product_cat_id='".$cat_id."'":"").($color_id!=0?"
AND p.product_color='".$color_id."'":"")."
ORDER BY
item_order DESC LIMIT ".$rowstart.",".$limit);
the output:
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 'M' in 'where clause'')' at line 1
M is $option