--- Sara <[EMAIL PROTECTED]> wrote:

> 
> use CGI;
> my $q = new CGI;
> 
> my $name = $q->param('name');
> 
> Now What as multiple name values will be coming.............??

Use list context:

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

Cheers,
Ovid

-- 
If this message is a response to a question on a mailing list, please send
follow up questions to the list.

Web Programming with Perl -- http://users.easystreet.com/ovid/cgi_course/

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to