You can us the IN
operator. You want it to look like:
title IN ('hi', 'there', 'everybody')
So you'd do something like:
$sql = "SELECT * FROM myTable WHERE title IN '" . implode("','", $myarray) . "';"
Note that you need to filter your array for SQL injection issues first.