TGM Posted May 10, 2009 Share Posted May 10, 2009 I want to insert date from page to mysql: This is what I got but does work <?php $hostname = "localhost"; $db_user = "root"; $db_password = ""; $database = "users"; $db_table = "orders"; $db = mysql_connect($hostname, $db_user, $db_password); mysql_select_db($database,$db); $query_auto = "INSERT INTO $db_table (date) VALUE ( CURDATE() )"; ?> I have a table name orders...in that table I have a date column but it only store "0000-00-00" Link to comment https://forums.phpfreaks.com/topic/157566-solved-inserting-date/ Share on other sites More sharing options...
ILMV Posted May 10, 2009 Share Posted May 10, 2009 So is it inserting any records? If it is but the date is wrong then try using now(). ILMV Link to comment https://forums.phpfreaks.com/topic/157566-solved-inserting-date/#findComment-830911 Share on other sites More sharing options...
thebadbad Posted May 10, 2009 Share Posted May 10, 2009 I think the SQL syntax should be "INSERT INTO `$db_table` (`date`) VALUES (CURDATE())" Link to comment https://forums.phpfreaks.com/topic/157566-solved-inserting-date/#findComment-830913 Share on other sites More sharing options...
TGM Posted May 10, 2009 Author Share Posted May 10, 2009 So is it inserting any records? If it is but the date is wrong then try using now(). ILMV still doesnt work...all other info is being stored except the date..it only stores 000-00-00. Link to comment https://forums.phpfreaks.com/topic/157566-solved-inserting-date/#findComment-830915 Share on other sites More sharing options...
webdesco Posted May 10, 2009 Share Posted May 10, 2009 Hi, how have you got the date column of your table set up, DATETIME ? try the following, it's a silly way of doing it, but you will be able to figure out whether it is a problem with your php or a problem with the mysql table structure. $mysqldate = date('Y-m-d H:i:s', time()); echo $mysqldate; $query_auto = "INSERT INTO $db_table ('date') VALUE ( '$mysqldate' )"; good luck! Link to comment https://forums.phpfreaks.com/topic/157566-solved-inserting-date/#findComment-830922 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.