gpt4 book ai didi

php - 数据表不能与 php 一起使用

转载 作者:行者123 更新时间:2023-11-29 17:21:36 25 4
gpt4 key购买 nike

我有一个包含从 mysql 数据库获取的动态内容的数据表。如果我没有记录,该表会通过搜索栏等正确显示。但是一旦我添加了数据,它就会删除标题中的搜索选项、分页和排序选项。

这是我的代码:

在标题中:

    <link rel="stylesheet" href="https://cdn.datatables.net/1.10.19/css/jquery.dataTables.min.css">
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.19/css/dataTables.bootstrap.min.css">
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
<script src="https://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js"></script>
<script src="https://datatables.net/examples/resources/demo.js"></script>

<script type="text/javascript" class="init">
$(document).ready(function() {
$('#userstable').DataTable( {
"language": {
"url": "//cdn.datatables.net/plug-ins/9dcbecd42ad/i18n/Hebrew.json"
}
} );
} );

</script>
<link rel="stylesheet" href="assets/css/datatables.css">

在正文中:

    <table id="userstable" class="table display" style="width:100%">
<thead>
<th class="text-center">תמונה</th>
<th class="text-center">שם פרטי</th>
<th class="text-center">שם משפחה</th>
<th class="text-center">שם משתמש</th>
<th class="text-center">דוא"ל</th>
<th class="text-center">קבוצה</th>
<th class="text-center">פעיל</th>
<th class="text-center">נוצר ב</th>
<th class="text-center">עריכה</th>
<th class="text-center">מחיקה</th>

</thead>
<tbody>

<?php

while($row = mysqli_fetch_assoc($result)){

echo "<tr>
<td class='text-center'>" . $row['avatar'] . "</td>
<td class='text-center'>" . $row['firstName'] . "</td>
<td class='text-center'>" . $row['lastName'] . "</td>
<td class='text-center'>" . $row['username'] . "</td>
<td class='text-center'>" . $row['email'] . "</td>
<td class='text-center'>" . $row['userGroup'] . "</td>
<td class='text-center'>" . $row['active'] . "</td>
<td class='text-center'>" . $row['userGroup'] . "</td>
<td class='text-center'><a href='edituser.php?id=" . $row['id'] . "' type='button' class='btn btn-info'>עריכה</td>
<td class='text-center'><a href='deleteuser.php?id=" . $row['id'] . "' type='button' class='btn btn-danger'>מחיקה</td>
<tr>";

}

?>
</tbody>
</table>

这是一个显示问题的短视频:

http://recordit.co/sfuMTXW7Be

提前谢谢您。

最佳答案

我发现问题了...我没有关闭表格最后 2 个 td 中的 a 标签...

关于php - 数据表不能与 php 一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51219765/

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