I have a value
$id=10,12,4,45; //these are ids of all the products in product table
Now I want to show (echo) products' names which are given in this single variable.
Something like:
query="SELECT description from product where id ='$id' ";
How do I do that?