Hello friends,
I am using a form within a form that is as below:
How to get these textbox values to another program by using param function. Consider with that loop create so many textboxes. If i use $subloc = $r->param('subloc' );
I am getting first textbox value only.How to get other values also
I am using a form within a form that is as below:
Code:
<form name="frm">
my $i = 1;
while(some loop)
{
<form name="Form$i" id="Form$i"><input name=subloc type=text></form>
$i++;
}
</form>
I am getting first textbox value only.How to get other values also
Comment