Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: Re: CGI.pm being funny?

by xtype (Deacon)
on Feb 06, 2002 at 05:16 UTC ( [id://143555]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    print
      $q->checkbox_group
    ...
        -values=>\@predefined,
        -defaults=>param('predefined'),
      );
    
  2. or download this
    <input type="checkbox" name="predefined" value="ARRAY(0x833ced0)" />AR
    +RAY(0x833ced0)<br />
    
  3. or download this
    print
      $q->checkbox_group
    ...
        -values=>@predefined,
        -defaults=>param('predefined'),
      );
    
  4. or download this
    <input type="checkbox" name="predefined" value="element content" />ele
    +ment content<br />
    
  5. or download this
    print $query->checkbox_group(-name=>'group_name',
                                           -values=>['eenie','meenie','min
    +ie','moe'],
                                           -default=>['eenie','moe'],
                                           -linebreak=>'true',
                                           -labels=>\%labels);
    
  6. or download this
    @h = $query->checkbox_group(-name=>'group_name',-values=>\@values);
    &use_in_creative_way(@h);
    
  7. or download this
    print $h[0];
    ---
    <input type="checkbox" name="group_name" value="ARRAY(0x833d000)" />AR
    +RAY(0x833d000)
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (1)
As of 2024-04-18 23:58 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found