gpt4 book ai didi

php - 将 mySQL 数据库的行链接到引用的页面

转载 作者:行者123 更新时间:2023-11-29 18:22:10 25 4
gpt4 key购买 nike

我在链接数据库的每一行以显示将显示另一个 mySQL 数据库表的链接时遇到困难。我认为错误来自代码的第二部分,而不是第一部分,其中我的查询可能不正确,但我无法弄清楚我需要更改哪一部分。到目前为止,这些是我的代码:

                              </tr>  
</thead>
<?php
while($row = mysqli_fetch_array($result))
{

$id = $row['my30_rsl_id'];
$SupplierName = $row['SupplierName'];
$Commodity = $row['Commodity'];

echo '

<tr>
<td>'.$row["my30_rsl_id"].'</td>
<td><a href="request.php?id=' . $id . '">' . $SupplierName . '</a></td>
<td><a href="request.php?id=' . $id . '">' . $Commodity . '</a></td>
<td>'.$row["Sub-Category"].'</td>
<td>'.$row["Status"].'</td>
<td>'.$row["Location"].'</td>

</tr>
';
}
?>
</table>

链接指向的页面:(它在 $result 处返回错误)

 <?php
$connect = mysqli_connect("localhost", "root", "password", "database");
$id = $_GET['id'];

$result = mysqli_query($con,"SELECT * FROM my30_rsl WHERE my30_rsl_id = $id");
?>

<!DOCTYPE html>
<html>
<head>
<title>Details</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
<script src="https://cdn.datatables.net/1.10.12/js/jquery.dataTables.min.js"></script>
<script src="https://cdn.datatables.net/1.10.12/js/dataTables.bootstrap.min.js"></script>
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.12/css/dataTables.bootstrap.min.css" />
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>


</head>
<body>
<br /><br />
<div class="container">
<h3 align="center">Details</h3>
<br />
<div class="table-responsive">
<table id="supplier_data" class="table table-striped table-bordered">
<thead>
<tr>

<td>SupplierName</td>
<td>Comments</td>


</tr>
</thead>
<?php
while($row = mysqli_fetch_array($result))
{
echo '
<tr>
<td> <a href=#>'.$row["SupplierName"] . '</a> </td>
<td>'.$row["Comments"].'</td>

</tr>
';
}
?>
</table>
</div>


</div>
</body>
</html>


<script>
$(document).ready(function(){
$('#supplier_data').DataTable();
});
</script>

最佳答案

可能有一些命名问题?带注释的代码

$connect = mysqli_connect("localhost", "root", "password", "database");
$id = $_GET['id'];
$result = mysqli_query($con,"SELECT * FROM my30_rsl WHERE my30_rsl_id = $id");
// ^--- where does that come from? you only have $connect

所以你可能必须将其命名为$connect。如果这不是问题,也许您应该查看错误消息,使用搜索引擎查找该错误消息并找出问题所在。

此外,您的代码容易受到 SQL 注入(inject)攻击。请了解如何使用准备好的语句。

关于php - 将 mySQL 数据库的行链接到引用的页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46484738/

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