私は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] =>
)
);
);