sarò più chiaro!
ecco lo script chiamante (somma.html):
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title></title>
</head>
<body>
<form method="POST" action="somma.php">
<input type="text" name="numero1" maxlength="10">
+ <input type="text" name="numero2" maxlength="10">
<input value="Fai la somma" type="submit">
</form>
</body>
</html>
questo è lo script chiamato (somma.php) che non stampa niente a video:
<html>
<? $numero1=$_POST["numero1"];
$numero2=$_POST["numero2"]; ?>
<h1 ><?echo $numero1+$numero2 ?></h1>
</html>