1) Bạn cần thêm VALUE
trong hộp chọn của bạn.
2) Không được xử lý INSERT query
AS UPDATE query
Hộp lựa chọn của bạn
<select name=thematique[] multiple>
<option value="MIE"> MIE </option>
<option value="Migration"> Migration </option>
<option value="Reunification_familiale"> Reunification familiale </option>
</select>
Tệp php của bạn để chèn vào ba trường riêng biệt
<?php
foreach ($_POST['thematique'] as $thematique)
{
///your insert code//
$bdd->exec("INSERT INTO categorisation (`thematique`) VALUES ('".$thematique."'");
}?>