Most modern browsers can handle forms that stretch over different tables, but writing such forms is against all standards
and is bad
HTML. Unless you really can't avoid it, don't do it.
For example,
is fine, but
is not.
Note that the input forms in search.htm can be changed at will. The default is drop-down menus, but nothing stops you from
using radio buttons or hidden input or even text boxes. For instance, where search.htm says
you can very well substitute
which will result in three radio buttons instead of a drop-down menu, with "20" as the default and the exact same functionality.
What you obviously cannot do is provide multiple-choice menus like <type="checkbox"> or <select multiple>.
Note that you can also use the
format if you want to set other defaults than the pre-defined and not allow the user to change them.