Possible Duplicate:
PHP/MYSQL using an array in WHERE clause
I have an array called $ids
:
Array ( [0] => 14 [1] => 15 [2] => 16 [3] => 17 [4] => 18 [5] => 19)
I want to select from table Users
where ID
matches any value on the array. How can this be done?