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
Share on other sites

I am using the function properly, I just made a typo in the rush, I do have double quotes and when I echo the date it is correct, but I can not insert it in the database, and it's not giving me any error it's just not inserting it >.<

Link to comment
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.