Jump to content

[SOLVED] Date/time help


tejama

Recommended Posts

Hey all,

 

I'm trying to insert a date/time into Mysql.  I'm entering a future date in a text box similar to '2007-12-31 6:00:00' and the field in Mysql I'm trying to insert it into is of the type datetime.

 

I'm trying

$date = $_POST['date'];

$newdate = date(Y-m-d H:i:s, strtotime($date);

 

Then I try to insert $newdate but no joy.  Can anyone suggest what's going wrong here?

Link to comment
Share on other sites

 

Try this, I think it's because you're missing quotes. Try echoing the query to the page first to see if you're getting the date in the format before trying to enter it. I'm presuming the date is a Unix timestamp too.

 

$newdate = date("Y-m-d H:i:s", strtotime($_POST['date']);

 

EDIT:

Ohhh you're entering the date into a field in the correct format? Then you can just enter it as shown below.

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.