Jump to content

Incorrect datetime value:??


icehawk012

Recommended Posts

Alright, for some reason this script I wrote is working with mySQL 5 but not 4. I've been running through it trying to figure out what's going on but I keep getting the same error :

[quote]News could not be added because: Incorrect datetime value: '9.7.2006 1:41am' for column 'date' at row 1[/quote]

So here's what I've got as far as adding the "News":

[code] } else if (isset ($_POST['submit'])) {
include("db2.php");
$realdate = date ( 'n.j.Y g:ia' );
$writenews = "INSERT INTO park_news (title, content, date) VALUES ('{$_POST['posttitle']}', '{$_POST['postcontent']}', '{$realdate}')";
if (@mysql_query($writenews)) {
print ("<p>News successfully added.</p>");
} else {
print ("<p>News could not be added because: <b>" . mysql_error() . "</b></p>");
}
print ("<img src=\"spacer.gif\" width=\"75%\" height=\"1\" />");
[/code]

Should I be using the time() function to get my date and then reformatting it when it spits it back out?
Link to comment
https://forums.phpfreaks.com/topic/19973-incorrect-datetime-value/
Share on other sites

Yeah its possible. PHP5 introduced some date/time contants to use. You will probably have to use php date function in order to get them to work properly and then add to the database afterward.

http://uk.php.net/manual/en/ref.datetime.php#datetime.constants
Ok, I've got it all figured out so I figured I would update everyone on how it's done. I'm using the MySQL NOW() function, but combining it with the MySQL CONVERT_TZ() function which takes three variables: DATETIME, Timezone1, and Timezone2. Timezone1 being the starting timezone and Timezone2 being the timezone to be converted to. The code ends up looking like so:

[code] } else if (isset ($_POST['submit'])) {
include("db2.php");
$writenews = "INSERT INTO park_news (title, content, date) VALUES ('{$_POST['posttitle']}', '{$_POST['postcontent']}', CONVERT_TZ(NOW(),'+00:00','-07:00'))";
if (@mysql_query($writenews)) {
print ("<p>News successfully added.</p>");
} else {
print ("<p>News could not be added because: <b>" . mysql_error() . "</b></p>");
}
print ("<img src=\"spacer.gif\" width=\"75%\" height=\"1\" />");
[/code]

Works flawlessly.  ;D

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.