Is it possible for PHP to get the id value of a select box in a form?

Lets say I have two select boxes that share the same name attribute but different ids:


<select id="1" name="option1"><option value="1"></option></select>
<select id="2" name="option1"><option value="2"></option></select>


Is it possible for PHP to get the id value of a select element and not just the name and value?

Thanks for the clarification

Nope. PHP will only get the name and the value through POST-data. No other stuff like id’s, classes, etc.