Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: Re: Need to retrieve data passed from dynamically created radio buttons.

by earthboundmisfit (Chaplain)
on Sep 19, 2001 at 23:37 UTC ( [id://113452]=note: print w/replies, xml ) Need Help??


in reply to Re: Need to retrieve data passed from dynamically created radio buttons.
in thread Need to retrieve data passed from dynamically created radio buttons.

Another way to do it would be to write a hidden field that is, in essence, a data constructor:
<INPUT TYPE="hidden" name="user_list" value="([dynamic list here])"> and then in the Perl program, use param('user_list') to construct your + array #! Perl -w use strict; use CGI; $my q = CGI->new; my @users = scalar $q->param('user_list'); &do_stuff($_) for (@users); # or whatever
  • Comment on Re: Re: Need to retrieve data passed from dynamically created radio buttons.
  • Download Code

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://113452]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (5)
As of 2024-04-19 11:58 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found