Để chuyển một NULL cho MySQL, bạn chỉ cần thực hiện điều đó.
INSERT INTO table (field,field2) VALUES (NULL,3)
Vì vậy, trong mã của bạn, hãy kiểm tra if $intLat, $intLng
empty
, nếu có, hãy sử dụng NULL
thay vì '$intLat'
hoặc '$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)";