<?php session_start();?>
<html>
<head>
<title>aumento y decremento</title>
<head>
<body>
<?php
if ($_GET['operacion']=='suma'){
$_SESSION['num']=$_SESSION['num'] + $var;
echo $_SESSION['num'];
}
else{
if ($_SESSION['num']!=0){
$_SESSION['num']=$_SESSION['num'] - $var;
echo $_SESSION['num'];
}
else{
echo $_SESSION['num'];
}
}
?>
<br/><a href="prueba.php?var=1&operacion=suma">Incrementa</a> | <a href="prueba.php?var=1&operacion=resta">Decrementa</a>
</body>
</html>