Tema: Suma Ayuda
Ver Mensaje Individual
  #7 (permalink)  
Antiguo 31/07/2007, 09:01
huascar
 
Fecha de Ingreso: julio-2007
Mensajes: 114
Antigüedad: 16 años, 9 meses
Puntos: 0
De acuerdo Ayuda Con Codigo De Suma

TENGO ESTE CODIGO QUIERO HACER UNA SUMA PERO ME DA ES CERO


codigo php:

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

</head>

<body>
<form action="h.php">
<table> <TR><TD>
<INPUT type="text" name="1">
<INPUT type="text" name="2">
<INPUT type="submit" name="suma" value="suma">
</TD></form>
</TR></table>
</body>
</html>
<?
$dades=$_POST;

$suma=$dades['1']+$dades['2'];

echo $suma;
?>