Skip to content
Advertisement

Inserting date in null [closed]

I am inserting date. It works when date is set, otherwise, it doesn’t work.

DateBirth type is date and its default value is NULL.

Here is my php

JavaScript

Here is mysql

JavaScript

How can I get date field in null?

Advertisement

Answer

You are currently adding NULL as an STRING to your database. You have to rewrite your SQL command to:

JavaScript

When you do an echo in front of the SQL you will get, with the NULL in your case:

JavaScript

And correct is:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement