我正在尝试将变量中的日期插入 mysql 数据库。列的格式是日期,列中有日期。列中的日期看起来像 yyyy-mm-dd
我的日期变量也看起来像这样,但是它不会将日期插入列中,即使我没有收到错误只是一个白屏。
<?php
//here is the code to insert this does not work
mysql_query("INSERT INTO `invoices` (account_id, purchased_date, sales_rep, INV_ID)
VALUES ('".$acctid."', '".$date"','".$row['8']."', '".$invid."' )") or die("load1 -" . mysql_error());
<?php
//this does work but it does not have the date.
mysql_query("INSERT INTO `invoices` (account_id, sales_rep, INV_ID)
VALUES ('".$acctid."', '".$row['8']."', '".$invid."')") or die("load1 -" . mysql_error());
不确定是什么问题。我已经在屏幕上显示了 $date 变量,它看起来很好。2012-06-01
所以我不确定为什么它不能将它插入数据库。