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:ページング –