如果你想在你的代码中有一个查询(基于你的查询),你不能这样做。您必须对点击项或链接进行另一次查询。
如果您不需要不使用表中的所有列,请*
仅选择您需要的内容,以使您的代码更具可读性并更快地执行。
修改了您的字符串查询,
"SELECT id, name FROM tablename WHERE type = 'Panes'"
并在您的代码中显示结果以建立链接,
<a href = "displayAllColumns.php?id=<?php echo $row['id']; ?>"><?php echo $row['name']; ?></a>
在您的页面 displayAllColumns.php 中,您必须通过 get 方法获取传递的数据
$id = $_POST['id'];
//then make a query for that to select all the data on that id
//just have to type only the string so
"SELECT * FROM tablename WHERE id = '$id'"
//you must use `*` because you need to display all the columns then write your table code to display the result.
希望能帮助到你