<form method="post" action="add.php?addTeahcer">
<select name="selteaid">
    while($row = mysql_fetch_array($result1))
   {
    echo "<option value =" . $row['id'] . ">" . $row['name'] . "</option>";
   }
</select>
<select name="selclaid">
    while($row = mysql_fetch_array($result2))
   {
    echo "<option value =" . $row['id'] . ">" . $row['id'] . "</option>";
    }
</select>
<input type="submit" class="button" value="提 交" />
</form>
在一个form表单中,存在多个select,递交到add.php文件后,如何获取到这两个select被选中的值??