in reply to Re: CGI.pm single radio button
in thread CGI.pm single radio button

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

Replies are listed 'Best First'.
Re^3: CGI.pm single radio button
by Anonymous Monk on Mar 30, 2011 at 13:11 UTC
    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