1
好吧,我的繼承人問題,從SQL數據下拉列表:創建具有當後叫,保持選項卡中選擇
我可以創建下拉列表,但是當我嘗試設置上次使用的選項卡,選中運行while查詢並選擇底部選項。
繼承人我的代碼:
<?php
$sql="SELECT id, description FROM sites";
$result=mysql_query($sql);
$options="";
while ($row=mysql_fetch_array($result)) {
$id=$row["id"];
$thing=$row["description"];
$thing2 = $_POST['thing'];
$options.="<OPTION VALUE='if (isset($_POST['thing'])){ echo $thing2; 'selected='selected''}else{ echo $id}'>".$thing;
}
?>
<form action="" method="post" />
<SELECT NAME="thing" id="thing">
<OPTION VALUE=0>All
<?=$options ?>
</SELECT>
<input type="submit" name="submit" value="Update"/>
</form>
如何設置所選標籤到一個它是點擊提交按鈕後?
我已經編輯這表明我是什麼之後 – user2403705