我有file1.php 和file1.php。我想要一个从 file1.php 到 file2.php 的 ID(存储在数据库中),但我通过一个链接到第二页<a href=
必须转到 file2.php 的 ID 号取决于我单击的链接。所以SESSIONS
可能不会这样做。我试过了,SESSIONS
但当我测试它时它只记得 1 个 ID 号。
这是 file1.php 中的所有内容:
while ($thread = mysqli_fetch_assoc($sql_result)) {
<a href="thread.php?thread_id={$thread['thread_id']}"> {$thread['title']} </a>
}
这个while循环确保我的数据库中每个不同的标题都获得一个链接(指向file2.php),其中包含属于thread_id的必要信息。(thread_id 是我数据库中唯一必须与其他数据库不同的东西)
所以现在要在 file2.php 中显示它,我得到了这个:
$sql_result = $mysqli2->query("SELECT * FROM questions WHERE thread_id = '".The ID Number of the link of file1.php."'");
while ($thread = mysqli_fetch_assoc($sql_result)) {
echo <<<EOT
<table>
<tr>
<tr><td> {$thread['title']}</td></tr>
<tr><td> {$thread['description']}</td></tr>
<tr><td> {$thread['username']}</td></tr>
<tr><td> {$thread['date_made']}</td></tr>
</tr>
</table>
EOT;
显示属于 thread_id 的信息。我该怎么做呢?