in reply to Automated form submission
<input type=hidden name="var" value="test">
<input type=text name="var" value="test">
<select name="var">
<option>test</option>
</select>
Submitting any of the above would look the same to the server when it received them. Though if you submitted a value that wasn't on the select list, it might be smart enough to know that. If you know it ahead of time, encode it like any other param.
my $req = POST $URL, {var=>"value", selectvar=>"selectvalue"};
|
|---|