我有 html 表单和服务器端 php。我想在 HTML 中对一些表单元素进行分组,以便它在 php 中显示为数组
<fieldset>
<input name="xx[]" type="text" />
<input name="yy[]" type="text" />
</fieldset>
<fieldset>
<input name="xx[]" type="text" />
<input name="yy[]" type="text" />
</fieldset>
所以它会出现在php数组中
array (
[0] => array(
[xx] => Array
(
[0] =>
[1] =>
)
[yy] => Array
(
[0] =>
[1] =>
)
),
[1] => array(
[xx] => Array
(
[0] =>
[1] =>
)
[yy] => Array
(
[0] =>
[1] =>
)
);
);