我收到此错误:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''05/12/13)' at line 2
由于这段代码:
<input type="text" name="submitdate" value="<?php echo date('d/m/y'); ?>" readonly>
感谢任何帮助,谢谢。
答案 0 :(得分:0)
MySQL期望日期格式为“YYYY-MM-DD”而不是“d / m / y”。
这将适当地格式化日期:
date('Y-m-d');