I have a file say a.php , which is something like :
<html >
..
<form ... >
<select size="1" class="inputtext" name="item" > ...</select>
<select size="1" class="inputtext" name="item" > ...</select>
<select size="1" class="inputtext" name="item" > ...</select>
.......
....
</form>
</html>
Now I would like to access these form elements of the "same" name after submitting
the form. Although using javascript I can access these elements using forname.item[index] , but I cant figure out a way to get the values using $_POST in PHP.
please help me , its urgent
thanks
deepak