通过单击php中的按钮来增加数字(整数)变量

时间:2014-07-29 11:09:04

标签: php button click add

当我使用PHP和HTML单击按钮时,我需要在PHP中添加和减去一个整数变量。

我不应该在这个场景中插入任何数字。

<HTML> <input type = "submit" name = "incr" value = '1'/> </HTML>

我可以使用此代码。

<?php $raw = $_POST['incr']+$raw; ?>

每当我点击按钮时,$ raw应该增加1,如果我点击减少按钮,它应该减1。

谢谢。

3 个答案:

答案 0 :(得分:1)

使用SESSIONS

<?php
session_start();
$_SESSION['raw'] += intval($_POST['incr']);

?>

此外,如果你想减少$ _SESSION ['raw'],只需添加一个简单的if-else和POST变量。

答案 1 :(得分:0)

使用以下

<?php
$raw =$raw+intval($_POST['incr']);

?>

答案 2 :(得分:0)

<?php
print_r($_GET);
if(isset($_GET['current_value']))
{
if(isset($_GET['valinc']))
{   
$current_value=$_GET['current_value']+1;    
}else{
$current_value=$_GET['current_value']-1;        
}
}else{
$current_value=0;   
}
?>
<form name="form1" method="get">
<input type="text" name="current_value" value="<?php echo $current_value; ?>"/>
<input type="submit" name="valinc" value="+1" />
<input type="submit" name="valdec" value="-1" />
</form>

检查这个简单的php表单脚本。