Lightning Alpha: Probleme mit einem Formular

Beitrag lesen

Hi,
mit PHP so z.B.:

<form id="kontakt" method="POST" action="index.php">
  <input name=test>
  <input name="gesendet" type="submit">
</form>

if (isset($_POST['gesendet'])
{
  print $_POST['test'];
}

Ich glau ich hab es jetzt begriffen:

das da oben dann für: <form id="kontakt" method="post" action="index.html">
und für $_POST dann meine E-Mail Adresse einsetzen?