php sélectionnez * dans la table où id dans le tableau

$sql = 'SELECT * 
          FROM `table` 
         WHERE `id` IN (' . implode(',', array_map('intval', $array)) . ')';
Fantastic Ferret