I want to parse this drop down menu with php simple dom.
<select name="example">
<option value="1">First example</option>
<option value="2">Second example</option>
<option value="3">Third example</option>
</select>
I need the values and the options for this drop down menu.
Like this :
With PHP simple dom :
for parsing and getting drop down select values with the help of simple html dom
just try this simple code: