gpt4 book ai didi

php - 更改表的显示值(MySQL)

转载 作者:行者123 更新时间:2023-11-30 00:20:32 26 4
gpt4 key购买 nike

是否可以从显示的数据库表列中获取值?

例如作为 html 表单?或可点击的按钮?

我有一个表格,其中包含类(class) ID、学生 ID、答案和学生更正等值。现在我可以将不同的答案保存到数据库中,显示从表中选择的类(class)。但我想“选择”其中一个并“纠正”它并将所选答案保存到表中。

解决这个问题的最佳方法是什么?如果有人有时间帮助我,我将非常感激。

最佳答案

Is it possible to get the values from a databasetable collumn shown for example as a html form table?

如果您无法使用现有框架,最好的方法可能是使用 foreach 循环。

echo "<table><tr><th>Table Headers :)</th></tr>";
foreach ($lesson as $unit) {
echo "<tr><td>".$unit['question']."</td></tr>";
}
echo "</table>";

显然,您可以以相同的方式添加更多列。

But i want to "pick" one of them an "correct" it and save answer to table.

不确定我是否理解这个问题,但您可能会在页面底部的表单中看到一个列出答案的下拉框。您可以选择“正确的”并单击提交按钮,这将发布数据并将其写入 MySQL。

echo "<form action='' method='POST'>
<input type='hidden' name='action' value='answer'>
<select>
<option value='".$yourValueHere."'>".$yourLabelHere."</option>
...
</select></form>";

然后,您可以拥有仅当 action ==“answer”时才执行的脚本部分。该部分可以将选定的答案写入 MySQL 数据库。

关于php - 更改表的显示值(MySQL),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23280598/

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