Seleccione los valores de MySQL usando la matriz PHP de IDS
$sql = 'SELECT *
FROM `table`
WHERE `id` IN (' . implode(',', array_map('intval', $array)) . ')';
Fantastic Ferret