我正在爲我的註冊頁面, 國家名單,但我想知道如何實現它到我的註冊表格。PHP如何獲得國家下拉列表
我所做的列表文件中country.php
<select name="Country">
<option selected="selected" </option>
<option value="">Country...</option>
<option value="Afganistan">Afghanistan</option>
<option value="Albania">Albania</option>
<option value="Algeria">Algeria</option>
</select>
,並在我的註冊頁面我在我的表
<tr>
<th>Land </th>
<td><?php include 'country.php'; ?></td>
</tr>
使用,但它似乎沒有保留價值的形式時,我提交。
如何讓$ Country的值等於country.php文件中所選的選項?
感謝很多:)
第一個選項標籤是未封閉的,如果沒有別的,這將破壞表單。 –
請顯示您試圖捕獲值的代碼。 – helloandre