Tema: Suma Ayuda
Ver Mensaje Individual
  #6 (permalink)  
Antiguo 31/07/2007, 08:42
huascar
 
Fecha de Ingreso: julio-2007
Mensajes: 114
Antigüedad: 16 años, 9 meses
Puntos: 0
Re: Suma Ayuda

ni asi da el resultado pruebenlo para q vean da es CERO


<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;
?>