Jump to content

string to date


manix

Recommended Posts

Erm I'm trying to insert a date into mysql but I'm failing

 

$date = date(Y-m-d);

 

this is my date variable which I tried to insert but in mysql the date was like 0000-00-00 and I googled my issue ofcourse and what I came up with was strtotime() but this failed as well, so I need help with inserting a date into a DATE mysql field

Link to comment
https://forums.phpfreaks.com/topic/243857-string-to-date/
Share on other sites

missing double quotes:

 

$date = date("Y-m-d");

 

*** Just quotes in general. In this case, single quotes would be a little better, as double quoted strings are parsed, and we don't need parsing in this case

 

Can you give us a dump of the table and the query used?

Link to comment
https://forums.phpfreaks.com/topic/243857-string-to-date/#findComment-1252119
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.