无法在锚标记中传递变量($forum_ID
)。请参阅下面的代码。
while($row=mysqli_fetch_array($result)){
$topic=$row['topic'];
$forum_ID=$row['forum_ID'];
echo $forum_ID;
$count= $count+1;
echo"<tr style='font-size:12px'><td>".$count."<a href='post.php?id=".$forum_ID."'>".$topic."</a></td>
<td></td>
</tr>
<tr>
<td><hr></td>
</tr>";
}
答案 0 :(得分:0)
试试这个:
echo'<tr style="font-size:12px"><td>'.$count.'<a href="post.php?id='.$forum_ID.'">'.$topic.'</a></td>
<td></td>
</tr>
<tr>
<td><hr></td>
</tr>';