$int_value = empty($_GET['int_value']) ? NULL : (int)$_GET['int_value'];
Použijte $int_value pro sloupec ve vašem INSERT .
$int_value = empty($_GET['int_value']) ? NULL : (int)$_GET['int_value'];
Použijte $int_value pro sloupec ve vašem INSERT .