$_SESSION タグを使用して、選択したトピックの値を別のページに送信できるようにしたいのですが、常にデータベース内の最後のデータの値を取得します
$sqltpc = "SELECT * FROM forum_question";
$resulttpc = mysql_query($sqltpc) or die('Error: '.mysql_error());
while($linetpc = mysql_fetch_array($resulttpc, MYSQL_ASSOC)){
echo "
<tr id='trow' class='right'><input type='hidden' name='hidden' value=".$linetpc['id']." />
<td><img src='Images/logosmallforum.png' /><a href='lentech_topic.php'>".$linetpc['id']." ".$linetpc['topic']."</a></td>
<td><a href='#'>".$linetpc['username']."</a></td>
<td><a href='#'>".$linetpc['view']."</a></td>
<td><a href='#'>".$linetpc['reply']."</a></td>
</tr>";
}
$viewtpc = $_POST['hidden'];
$_SESSION['idset'] = $viewtpc;