Hi, From what i know, the browser sends only one pair data; the name of selected dropdown list with the value of selected option.
<select name="nameOne" id="nameOne"> <option value="whatever">WHATEVER U WANT THEM TO SEE</option> <option value="whatever1">WHATEVER U WANT THEM TO SEE</option> </select> ----php code--- $name = $_POST['nameOne']; echo $name // print the value of 'select' this ex. whatever or whatever1