在php中将变量作为查询字符串传递给href?

时间:2015-09-28 07:39:20

标签: php variables getmethod get-method

无法在锚标记中传递变量($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>";
    } 

1 个答案:

答案 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>';