Help for this page

Select Code to Download


  1. or download this
    <input type="checkbox" name="football" value="football">
    <input type="checkbox" name="soccer" value="soccer">
    <input type="checkbox" name="tiddly winks" value="tiddly winks">
    
  2. or download this
    <input type="checkbox" name="sports" value="football">
    <input type="checkbox" name="sports" value="soccer">
    <input type="checkbox" name="sports" value="tiddly winks">
    
  3. or download this
    sports=football&sports=tiddly%20winks
    
  4. or download this
    my @sports = $q->param('sports');
    foreach my $sport ( @sports ) {
        # subscribe them to the list
    }