<select name="topic" style="margin-bottom:3px;">
<option>General Question</option>
<option>Company Information</option>
<option>Customer Issue</option>
<option>Supplier Issue</option>
<option>Request For Quote</option>
<option>Other</option>
</select>
的下拉。當表單提交時,它會轉到驗證頁面。如果它有錯誤,表單會保留用戶放入的原始內容。我對所有輸入字段和textarea都有效,但是我怎麼能用下拉菜單來做到這一點?
我輸入字段住用:
$name = $_REQUEST["name"];
,並在再次顯示了一種形式中,(忽略一個事實,即它是在一個表):
<tr>
<td>Name:*</td>
</tr>
<tr>
<td><input name="name" type="text" size="15" value="<?php echo $name ?>" maxlength="200" /></td>
</tr>
那麼,下拉式的任何想法?