我儘量讓我的下拉列表中選擇只有當錯誤發生了,這是我的腳本粘下拉菜單中選擇僅如果有誤差提交
<select name="usertype" id="usertype" class="form-control">
<option value="">Please choose the user right</option>
<option value="admin"<?php if(isset($error)
&& $_POST['usertype'] == 'admin' ? ' selected="selected"' : '');?>>
Admin
</option>
<option value="author"<?php if(isset($error)
&& $_POST['usertype'] == 'author' ? ' selected="selected"' : '');?>>
Author
</option>
<option value="public"<?php if(isset($error)
&& $_POST['usertype'] == 'public' ? ' selected="selected"' : '');?>>
Public
</option>
</select>
誰能告訴我正確的方法是什麼?因爲它不起作用。
感謝您的解釋和它的工作。 – Kyo
@Kyo很高興這有幫助 – Ghost