Hi I am pretty new to cURL and I understand how to fill in a <form> tag, but I was wondering if there was any way to select a speciefic <option> tag value inside of an <select> tag. For instance if I had this:
<select id="termIdSelect" name="termId" style="visibility: visible;">
<option value="">Select</option>
<option value="1">First Choice</option>
<option value="2">Second Choice</option>
</select>
If I wanted to write a php script with cURL that would select the option value equal to one and then echo out the the html of the page afterwards, how would I do that? Thanks/