Never thought of it before, but now I need help as how to pass multiple values 
of a form field with a single submit to script.

****** example ******

<form>

<!-- Name is a required Field, but E-mail could be left blank -->

<!--- First Input -->
<input type=text name=name>
<input type=text name=email>

<!-- Second Input -->
<input type=text name=name>
<input type=text name=email>

<!-- Third Input -->
<input type=text name=name>
<input type=text name=email>

<input type=submit value="Submit">

</form>

************************************

use CGI;
my $q = new CGI;

my $name = $q->param('name');

Now What as multiple name values will be coming.............??


Thanks for any help.

Sara.

Reply via email to