首先看我的代码。
<select multiple name='assign_to[]'>
<?
$result_10 = mysql_query("select * from login_users") or die(mysql_error());
while($row_10 = mysql_fetch_object($result_10))
{
echo "<option value=".$row_10->user_id.">".$row_10->username."</option>";
}
?>
</select>
我可以在提交页面时获得价值,这没有问题,但我的问题是:
提交页面后,我将重定向到同一页面,然后我希望在提交表单之前选择的选项将在提交页面后被选中。
PHP 代码要写在那里。我为单个选定的下拉列表做了什么:
<?
while($row_10 = mysql_fetch_object($result_10))
{
?>
<option <?=$row_10->user_id==$_POST['assign_to']?'selected':''?> value="<?=$row_10->user_id?>"><?=$row_10->username?></option>
<?
}
?>
希望你得到我的问题?
谢谢!!!