The following form is loaded in a recent browser and submitted, with the second list element selected:
<form method="post">
one
two
three
In the server-side PHP code to deal with the form data, what is the value of $_POST ['list']?
1
2
null (since the value attribute of the list has not been set)
value attribute of the list has not been set)
Submit