次のように Javascript を使用して作成した HTML フォームに日付選択フィールドがあります。
<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)')