每按一次提交按钮,$ count ++

时间:2017-05-04 18:47:06

标签: php

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

0 个答案:

没有答案