This variable gets inserted into my mysql
database:
$n_date = date('d-m-Y');
and in the database i always see this:
0000-00-00 00:00:00
What am i doing wrong?
This variable gets inserted into my mysql
database:
$n_date = date('d-m-Y');
and in the database i always see this:
0000-00-00 00:00:00
What am i doing wrong?
收起
Because your format is wrong. MySQL expects the date to be in YYYY-MM-DD
format. So:
$n_date = date('d-m-Y');
should be
$n_date = date('Y-m-d');
Or, for completeness:
$n_date = date('Y-m-d H:i:s');
报告相同问题?