【发布时间】:2016-09-16 05:01:10
【问题描述】:
我有 5 个月的 php 和 mysql 工作经验。我的问题是如何使用复选框在我的 mysql 数据库表中选择一些列,并在 php 的 html 表中显示这些选定列的数据? 请在下面查看我的代码并帮助我解决这个问题。
复选框代码:
<form role="form" id="viewallteachers" method="POST" autocomplete="on" action="">
<h4>Kindly check the items to view in the table. You have a maximum of 10 items to view at a time in the table.</h4>
<hr>
<div class="row">
<div class="col-sm-4">
<div class="checkbox">
<label>
<input type="checkbox" name="check_list[]" value="tpicture">Picture
</label>
</div>
<div class="checkbox">
<label>
<input type="checkbox" name="check_list[]" value="teacherID">Teacher ID
</label>
</div>
<div class="checkbox">
<label>
<input type="checkbox" name="check_list[]" value="staffID">
Staff ID
</label>
</div>
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="submit" name="btnshowcolumns" class="btn btn-primary">Save changes</button>
</form>
下面是我的表格代码,用于显示所选列和每个所选列的数据。
<?php if(!empty($_POST['check_list'])) {
$check_list = $_POST['check_list'];
$counter = count($check_list);
for($x=0; $x<=$counter; $x++){
if(!empty($check_list[$x])){
$sql = "SELECT `".$check_list[$x]."` FROM teachers";
$db = new PDO('mysql:host=localhost:3306;dbname=gnoc_db', 'root', 'xxxx');
$select = $db->prepare($sql);
$select->execute();
while($row = $select->fetch(PDO::FETCH_ASSOC)) {
echo '<tr>';
foreach ($row as $key=>$value) {
echo '<td>'.$key . ' = ' . $value .'</td>';
}
echo '</tr>';
} /* END OF IF */
} /* END OF FOR LOOP */
}
}
?>
</tbody>
</table>
以下是图片: image of checkbox selecting the database columns image of table show data
【问题讨论】:
标签: php mysql arrays multiple-columns