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?