如何让选定的变量显示在来自
<select>
...的 URL 中
我的代码是:
print "<select name=\"assignedby\" multiple size=\"10\">";
while ($data = dbResult($qh)) {
print "<option name=\"$data[name]\"";
print ">$data[name]</option>\n";
}
print "</select>";
print "<br><a href='".$_SERVER['PHP_SELF']."?action=add'>Add</a> || <a href='".$_SERVER['PHP_SELF']."?origname=$data[name]'>Edit</a>\n";
当有人单击“编辑”链接时,它显示为:http ://www.site.com ?origname= 我希望它显示下拉列表中实际选择的原始名称...例如: http:// www.site.com?origname= $selecteduser-fromdroplist
请帮忙!