我有一個選擇日期字段使用Javascript如下創建我的HTML表單:如何爲日期格式輸入創建MySQL字段?
<tr>
<td valign="top"><label for="received">Received Date:</label></td>
<td valign="top"><select id="daydropdown" name="rcvdy"></select>
<select id="monthdropdown" name="rcvmon"></select>
<select id="yeardropdown" name="rcvyr"></select> *</td>
</tr>
我想從形式到MySQL數據庫中註冊的日期輸入。我需要爲我的PHP文件中的每個「日」,「月」,「年」輸入創建多個字段列嗎?像這樣
$query=mysql_query('CREATE TABLE shiplog (shpdy timestamp(2) NOT NULL, shmon timestamp(2) NOT NULL, shpyr timestamp(4) NOT NULL)')
HTML與您的數據庫結構無關!中間的PHP腳本獲取提交的數據並將其格式化爲數據庫。使用*一個*'DATETIME'或'TIMESTAMP'字段! – deceze