I am trying to get value from a form. My HTML is as below:
<select name="new_id" ><option value="464">464</option></select>
I am trying to get the value using:
my $clientId2 = param('new_id');
But I am getting $clientId2 as empty. Its working for all other tag except this one.