我想通过以下方式获得表格:
[-] [value] [+]
我不知道如何编写逻辑脚本以使 PHP 中的值高 1 或低 1。
我假设以下内容会起作用:
<?php
$i = 0;
if($_SERVER['REQUEST_METHOD'] == 'POST')
{
if(isset($_POST['plus']))
{
$i++;
}
if(isset($_POST['min']))
{
$i--;
}
}
?>
我的表格如下:
<form action="" method="post">
<input type="submit" name="min" value="-"> <input type="text" value=<?php echo $i ?> > <input type="submit" name="plus" value="+">
</form>
但我只得到 1 或 -1。有人可以告诉我如何以一种好的方式做到这一点吗?