HTMLフォームには、その他の入力などとともに、次のものが<input type="test" name="foo"></input>
あります。
<select name="tags" multiple="multiple">
<option selected="selected" value="hello">hello</option>
<option selected="selected" value="world">word</option>
</select>
問題は、私が使用しているときです
var_dump($_POST);
返されるタグは文字列で、次のように、select の最後の項目のみが含まれます。
string(5) "world"
何か助けはありますか?