我想填充情绪的下拉列表并将其保存到我的数据库中并带有时间戳。同时将情绪与当前用户联系起来。我应该如何处理这个?
在我的数据库中,我有一个名为“checkin”的表,其中包括:ID、时间、FKMoods(情绪列表的外键)和 FKUsers(用户的外键)。
现在我在“page.php”中有一个名为 checkin 的表单:
<form id="checkin" action="checkin/checkin.php" method="POST">
<label for="checkinMood">Select your current mood :</label>
<select id="checkinMood" class="SelectMood"></select><br />
<input type="submit" id="checkin-button" value="Update!" />