non capisco perche non funzia questi script

dartmo2005

Nuovo Utente
24 Giu 2005
1
0
0
non capisco perche non funzia questi script:
in HTML:
<html>
<body>
inserite due nume<br>
<formaction="ud01.php" method="post">
valore 1: <input name ="w1"><p>
valore 2: <input name ="w2"><p>
<input type="submit">
<input type="reset">
</form>
</body>
</html>

in PHP:
<html>
<body>
<?php
$ris=$w1+$w2;
echo"la somma di $w1 e $w2 è $ris";
?>
</body>
</html> :luke: :luke: :luke:
 
un errore potrebbe essere la mancanza di spazio tra "form" e "action"
*********
<form action="ud01.php" method="post">
*********
e nel codice PHP prova a specificare le variabili così:
*********
$w1=$_POST['w1'];
$w2=$_POST['w2'];
*********
 

Discussioni simili