Chcete-li předat NULL do MySQL, stačí to udělat.
INSERT INTO table (field,field2) VALUES (NULL,3)
V kódu tedy zaškrtněte if $intLat, $intLng
jsou empty
, pokud jsou, použijte NULL
místo '$intLat'
nebo '$intLng'
.
$intLat = !empty($intLat) ? "'$intLat'" : "NULL";
$intLng = !empty($intLng) ? "'$intLng'" : "NULL";
$query = "INSERT INTO data (notes, id, filesUploaded, lat, lng, intLat, intLng)
VALUES ('$notes', '$id', TRIM('$imageUploaded'), '$lat', '$long',
$intLat, $intLng)";