0
<body>
<?php
$count=0;
if(isset($_POST["show"]))
{
$count++;
echo $count;
unset($_POST["show"]);
//sql query for show record limit ($count*$row_per_page),$row_per_page
}
?>
<form action="index.php" method="post">
<input type="submit" name="show" value="show more">
</form>
</body>
我想在每次提交按鈕點擊時增加變量的值。 實際上,我希望在同一頁上的每個提交按鈕上顯示下10條記錄。
Google:分頁 –