PHP SELECT * De la tabla donde ID en matriz
$sql = 'SELECT *
FROM `table`
WHERE `id` IN (' . implode(',', array_map('intval', $array)) . ')';
Fantastic Ferret