Struppi: mehrere Submit-Buttons und feststellen welche gedrückt wurde

Beitrag lesen

Was spricht gegen:
<input type="button" name="command" value="save">
<input type="button" name="command" value="preview">

Daß das wirkungslose Buttons sind?
Sie haben per Definition in HTML kein Default-Verhalten, und obiger Code fügt auch kein Verhalten hinzu ...

Argh, ich meinte natürlich:
<input type="submit" name="command" value="save">
<input type="submit" name="command" value="preview">

Struppi.