$int_value = empty($_GET['int_value']) ? NULL : (int)$_GET['int_value'];
Utilisez $int_value pour la colonne dans votre INSERT .
$int_value = empty($_GET['int_value']) ? NULL : (int)$_GET['int_value'];
Utilisez $int_value pour la colonne dans votre INSERT .