Ver Mensaje Individual
  #1 (permalink)  
Antiguo 09/11/2011, 05:23
barakaldo
 
Fecha de Ingreso: noviembre-2011
Mensajes: 12
Antigüedad: 12 años, 5 meses
Puntos: 1
Mensaje Sumar valores de un textbox y calcular , PHp

Cordial saludo comunidad, tengo un inconveniente con mi codigo para sumar los valores que se digiten dentro de un textbox y luego calcularlos mediante un botón, no me realiza la suma :( .. Agradezco su colaboracion .. Este es mi código:

<html>
<head>
<title>Suma</title>
</head>
<body>
<form action="" method="POST">

<?php

@$a = $_POST['a'];

@$b = $_POST['b'];


echo "dato1: "."<input type=\"text\" name=\"".$a."\" value=\"\" >".'</br>';

echo "dato2: "."<input type=\"text\" name=\"".$b."\" value=\"\" >".'</br>';

echo "<input type=\"Submit\" name=\"sumar\" value=\"SUMA\" />".'</br>';

$suma = $a + $b ;

echo $suma;

?>