我想从 php 变量中设置 HTML 下拉菜单。我给你我的代码,这样你就可以看到我想做的事情:
<?php
$html_table = '
<table border="0" cellspacing="0" cellpadding="0"><tr>';
while($arr = pg_fetch_array($result1))
{
$html_table .= "<tr><td> $arr[0] </td></tr>";
}
$html_table .='</tr>';
?>
<p>
<select name="db" size="1">
<option> $html_table </option> #### <- that is my question, how to get that working
</select>
</p>
我希望你明白我想做什么。如果您知道更好的方法,请告诉我。干杯