Hello if I have the following array:
$array1 = array("option1", "option2", "option3");
How do you use an array in a where clause?
Is it the same syntax as if it were a scalar? (select * from table where field1 = '$array1'
Or do you do need to do something different?