Můžete použít funkci IN mysql
EDIT:Jak řekl amosrevira, musíte uniknout řetězcům v poli.
$myarray[1] = "'hi'";
$myarray[2] = "'there'";
$myarray[3] = "'everybody'";
$newarray = implode(", ", $myarray); //makes format 'hi', 'there', 'everybody'
SELECT * FROM myTable WHERE title IN ($newarray);