Is there a way to construct a query that will search the values in an array.
I.E.
$array1 = array(10, 45, 56, 32);
$query = "SELECT name FROM users WHERE id = '$array1''";
But instead of matching the entire array. I want it to match one (or more) of the array values.