Tema: Suma Ayuda
Ver Mensaje Individual
  #13 (permalink)  
Antiguo 31/07/2007, 09:18
santuguerra
 
Fecha de Ingreso: julio-2007
Mensajes: 71
Antigüedad: 16 años, 10 meses
Puntos: 1
Re: Suma Ayuda

Código PHP:

<html>
<head>
<title>Web Modular</title>

</head>

<body>
<form action="h.php" method='post'>
<table> <TR><TD>
<INPUT type="text" name="a">
<INPUT type="text" name="b">
<INPUT type="submit" name="suma" value="suma">
</TD></form>
</TR></table>
</body>
</html>
<?


$suma
=$_POST['a']+$_POST['b'];
echo 
$suma;

?>
Ya hice la prueba con el codigo que te lo modifique, y me anduvo...
fijate ahora si te funcionó!