Ver Mensaje Individual
  #1 (permalink)  
Antiguo 22/08/2008, 14:09
flashtkd
 
Fecha de Ingreso: agosto-2008
Mensajes: 587
Antigüedad: 15 años, 9 meses
Puntos: 6
sumar en php textfield

hola como puedo sumar en php



Codigo, sumar.php:

<form name="form1" method="post" >
<p>
<input type="text" name="textfield">
+
<input type="text" name="textfield2">
</p>
<p>
<input type="submit" name="Submit" value="Enviar"action="suma.php">
</p>

<?
$total = $textfield + $textfield2;
echo $total;
?>