Передать переменную в href как строку запроса в php?

Невозможно передать переменную ($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 ответ

Попробуй это:

    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>';
Другие вопросы по тегам