gpt4 book ai didi

php - 如何使用php和sql获取表格中的复选框

转载 作者:行者123 更新时间:2023-11-28 23:38:31 26 4
gpt4 key购买 nike

我需要修复此代码 我不明白复选框有什么问题。

 if ($result->num_rows > 0) { // this is the if statement
echo "<table border='1'><tr>
<th>ID</th>
<th>Usernames</th>
<th>Password</tr>"; //table headings
// output data of each row
while($row = $result->fetch_assoc()) {
echo "<tr>
<td>".$row["ID"]."</td>
<td>".$row["Username"]."</td>
<td>".$row<input type='checkbox'/>."</td> //this part needs to be fixed
</tr>"; // the problem is in this table
}
echo "</table>";// the code runs using a database and all information on the sql is correct
} else {
echo "0 results";
}

最佳答案

不确定您要做什么,但类似这样的内容应该适用于该行。

<td><input type='checkbox' name='something' value='".$row['ID']."' /></td>

在您的原始代码中,复选框的 HTML 不是字符串的一部分,而是看起来像是试图成为 $row 变量的一部分,这是一个语法错误。

关于php - 如何使用php和sql获取表格中的复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35092389/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com