帖子有重复的属性

时间:2011-02-04 09:04:53

标签: html post

问题是:我的表格中有单选按钮。默认情况下选中一个单选按钮。当我检查另一个并按下应用按钮时,我有$ _POST具有重复属性但不同的值: country: 55
country: 72
第二个是先前检查的值。预计只有一个属性。 我不明白为什么会这样。

<div id="countries">
    <table>
    <tr>
        <td>
            <input name="country" type="radio" value="14" id="country_14" checked="checked"/>&nbsp;<label for="country_14">Austria</label>
        </td>
        <td>
            <input name="country" type="radio" value="117" id="country_117"/>&nbsp;<label for="country_117">Latvia</label>
        </td>
    </tr>
    <tr>
        <td>
            <input name="country" type="radio" value="21" id="country_21"/>&nbsp;<label for="country_21">Belgium</label>
        </td>
        <td>
            <input name="country" type="radio" value="123" id="country_123"/>&nbsp;<label for="country_123">Lithuania</label>
        </td>
    </tr>
    <tr>
        <td nowrap>
            <input name="country" type="radio" value="33" id="country_33"/>&nbsp;<label for="country_33">Bulgaria</label>
        </td>
        <td nowrap>
            <input name="country" type="radio" value="124" id="country_124"/>&nbsp;<label for="country_124">Luxembourg</label>
        </td>
    </tr>
    </table>
</div>

1 个答案:

答案 0 :(得分:0)

可能POST是一个数组POST,如:

<form action="." method="POST">
 <input value="val1" name="name[0]">
 <input value="val2" name="name[1]">
 <input type="sumbit" value="Submit">
</form>