<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条记录。