予備知識 クエリで配列や連想配列を送りたい場合以下の形式でリクエストしてあける。以下のサンプルはURLエンコード前でつ。 // 1.配列ですよ index.html?hoge[]=10&hoge[]=20 // 2.連想配列ですよ index.html?hoge[foo]=foo&hoge[bar]=bar上記1のクエリが来たら$_GETの中身は以下みたいな感じになっている。 array(1) { ["hoge"]=> array(2) { [0]=> string(2) "10" [1]=> string(2) "20" } } HTMLだとこんな感じ。 <form action="index.html"> <input type="text" name="hoge[]" /> <input type="text" name="hoge[]" /> <input type