是否可以将下拉列表插入表格单元格?
谢谢您!
下面是一些代码:
$sql_query="SELECT nameOfwarning FROM warnings";
$sodss=mysqli_query($d,$sql_query);
if (mysqli_num_rows($result)<1)
?>
<select name = "warnings">
<option value="Choose one of the warnings: " </option>
<?php
while ($row = mysqli_fetch_array($warnings)) {
print "<option value=";
print $row["id_warning"];
print ">" ;
print $row["warning"];
print "</option>";
}
?>
</select><br>
<?php
print "<tr><td>Insert drop down list here?: </td><td><input type=\"text\" name=\"OR HERE\"></td></tr>";
最佳答案
我还冒昧地格式化了你的代码。希望你不介意。你应该这样做,作为一种普遍做法,使它更可读。
<?php
$sql_query = "SELECT id_warning, warning FROM warnings";
$result = mysqli_query($d, $sql_query);
$dropDownHtml = '';
if (mysqli_num_rows($result) > 0) {
$dropDownHtml .= '<select name = "warnings">';
$dropDownHtml .= '<option value="Choose one of the warnings: " </option>';
while ($row = mysqli_fetch_array($result)) {
$dropDownHtml .=
'<option value="{$row["id_warning"]}">' .
$row["warning"] .
'</option>';
}
$dropDownHtml .= '</select><br>';
}
?>
<tr>
<td><?php echo $dropDownHtml; ?></td>
<td><input type=\"text\" name=\"OR HERE\"></td>
</tr>
看起来您跳过了一些代码,因为SQL查询应该返回的内容与结果数组不匹配,还有一些变量不匹配。我把它改了一点,让它看起来可信,如果你不想把你所有的代码都放在这个问题上,你应该确保把它改回你的具体情况。
关于php - 如何将下拉列表插入表格单元格?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27476253/