我希望能夠通過具有$ _SESSION標記將所選主題的值發送到另一個頁面,但它總是獲取最後一個數據的值數據庫PHP在的條件下獲得numrows數據的值
$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;
那麼你想要什麼? – Hast 2013-03-06 19:34:51
你如何決定選擇哪個值? – hjpotter92 2013-03-06 19:40:47
是否可以使用 – 2013-03-06 19:49:10