tobi: verschachteln von formularen?

Beitrag lesen

hi,
wollte mal fragen, ob es möglich ist, formulare zu verschachteln. wenn ja: wie?

ich meine das so:
<form action="foo.php" method="post"> <!-- 1. -->
  <input type="text" name="bla"> <!-- 1. -->
  <form action="bar.php" method="post"> <!-- 2. -->
  <input type="text" name="bli"> <!-- 1. -->
    <input type="text" name="ho"> <!-- 2. -->
    <input type="submit"> <-- 2. -->
  </form> <!-- 2. -->
  <input type="text" name="hans"> <!-- 1. -->
  <input type="submit"> <!-- 1. -->
</form> <!-- 1. -->

ich will ja nicht, dass mit dem oberen button auch das obere formular geschickt wird...

gruß,
tobi