Ver Mensaje Individual
  #2 (permalink)  
Antiguo 03/03/2012, 16:47
jmabreu
 
Fecha de Ingreso: julio-2010
Mensajes: 197
Antigüedad: 13 años, 9 meses
Puntos: 32
Respuesta: Sumar con PHP

cambia method="get" por method="post"

y usa esta instruccion

if(isset($_POST['numerouno'])){
$valor = $_POST['numerouno']+$_POST['numerodos'];
echo $valor;
}else{}