<html>
<!-- $Id: form.html,v 1.2 2005-04-24 20:03:47 doros Exp $ -->
<head>
<title> Esempio di form HTML </title>
</head>
<body>
<form action="action.php" method="POST">
Nome: <input type="text" name="name" /><br>
Email: <input type="text" name="email" /><br>
<input type="submit" name="sub" value="imposta"><br>
<input type="submit" name="sub" value="annulla l'operazione">
</form>
</body>
</html>