From: [EMAIL PROTECTED]
Operating system: Linux
PHP version: 4.0.4pl1
PHP Bug Type: MySQL related
Bug description: Date problem with MySQL
./configure --with-mysql=/mysql --enable-bcmath --with-gd
--with-xml --with-imap --with-dbm
--with-apxs=/apache/bin/apxs
The code before update:
$today = date("Y-m-d H:i:00");
$requete = "insert into table (id, date) VALUES (NULL, \"$today\")";
$resultat = mysql_query($requete);
The result:
= 0000-00-00 00:00:00
After some modification:
$requete = "insert into table (id, date) VALUES (NULL, now())";
$resultat = mysql_query($requete);
The result:
= 2001-01-25 19:38:24
Conclusion:
I think there are a incompatibility with de date format
of mysql. I use mysql-3.23.32.
--
Edit Bug report at: http://bugs.php.net/?id=8939&edit=1
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]