in reply to CGI.pm single radio button

$ perl -MCGI -le " print CGI->radio_group( qw! -name solo -values !, [ + 123 ] ) " <label><input type="radio" name="solo" value="123" checked="checked" / +>123</label>

Replies are listed 'Best First'.
Re^2: CGI.pm single radio button
by kosta (Sexton) on Mar 30, 2011 at 13:06 UTC
    is there a way for me to have no labels for my radiobuttons? I mean I want to have a couple of radiobuttons in a matrix and have them be without any labels. I tried something in terms of -labels => '' or -labels => '' and nothing.. how do I make it without labels
      sure, don't use CGI for html generation :)
      $ perl -MCGI=-no_xhtml -le " print CGI->radio_group( qw! -name solo -v +alues !, [ 123 ] ) " <input type="radio" name="solo" value="123" checked >123