我遇到了一个奇怪的问题。 MYSQL行'ID'不会回显到另一个PHP页面。它应该是例如editrecord.php?id = 1000005,现在我只得到editrecord.php?id =
这很奇怪,因为如果我从搜索成员页面链接到编辑成员页面而不是从搜索成员页面链接到配置文件页面,即使使用了几乎相同的代码,它也能正常工作。
我错过了什么吗?这是代码......
// connect to the DB
include('includes/connect.php');
// get value of id that sent from address bar
$id=$_GET['id'];
// Retrieve data from database
$sql="SELECT * FROM Customers WHERE id='$id'";
$result=mysqli_query($con, $sql);
$rows=mysqli_fetch_array($result);
?>
<h4> Member Profile </h4>
<div class="fixed-action-btn horizontal" style="top: 110px; right: 1100px;">
<a href="editrecord.php?id=<? echo $row['id']; ?>" <a class="waves-effect waves-light btn">
<i class="large material-icons">mode_edit</i>
</a>