這裏是我的表單代碼插入日期到mysql
*我的數據庫使用的日期格式
我敢肯定,我的代碼有沒有錯誤,但是當我點擊上傳按鈕後,迄今爲止,只有走出來0000-00-00
<form action="imageupload.php" method="post" enctype="multipart/form-data">
<label for="date">Date</label>
<input type="date" size="60" name="date" id="date"/>
<input type="submit" value="Upload File" />
<input type="reset" value="Clear" />
</form>
這裏是我的形象upload.php的代碼
fclose ($handle);
// Commit image to the database
$date = htmlentities($_POST['date']);
$query = 'INSERT INTO user_post (date) VALUES ("' . date '")';
if (!(mysql_query($query,$link)))
{
die('<p>Error writing image to database</p></body></html>');
}
else
{
header('Refresh: 2 ; url=imageShow.php');
}
'$'標誌丟失。 – 2014-10-28 07:05:25
你正在添加'date'缺少'$' – 2014-10-28 07:05:29
$ query ='INSERT INTO user_post(date)VALUES(「'。$ date。'」)'; – MorKadosh 2014-10-28 07:05:39