2π
β
<td
is not part of the form, itβs for the styling. When submitting a form the fields in it will be submitted, nothing else. You can use hidden inputs if you want <input type="hidden" name="test" value="2">
will not be visible but submitted.
Try reading a bit about how forms works in HTML.
If you really want it in this way you can it to work with JavaScript instead.
π€olofom
Source:stackexchange.com