como puedo hacer una suma infinita con php, es decir, cuando alguien me pague la guardo en sesiones y cuando otra persona también me pague se sume a la sesion
gracias
Código PHP:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
nombre
<input type="text" name="nombre"/>
<br />
pago
<input type="text" name="producto" />
<br />
<input type="submit" value="Enviar Pago" />
</form>
<?php
echo "tu nombre es: ";
$a=$_SESSION['nom']=$_POST['nombre'];
echo $a."<br>";
echo "tu pago es :";
$b=$_SESSION['pro']=$_POST['producto'];
echo $b."<br> ";
echo "la suma total de todos los productos es";
?>
</body>
</html>