![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
31/07/2007, 09:01
|
| | Fecha de Ingreso: julio-2007
Mensajes: 114
Antigüedad: 17 años, 6 meses Puntos: 0 | |
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;
?> |