hey there I don't know if this mentioned earlier but I want to do this sql statment
$sql1 = "SELECT product FROM products WHERE cat = 2";
$sql2 = "SELECT product FROM products WHERE cat = 3";
$sql3 = "SELECT product FROM products WHERE cat = 4";
I want these three $sql combined into one so its give me the products from 3 catgeories.
is good to use CONCAT of INNER JOIN ?