in reply to Re^2: perl cgi standalone checkbox label problem
in thread perl cgi standalone checkbox label problem
Er... Then you didn't try it right.
use CGI; print CGI::checkbox(-name => 'my_checkbox', -checked => 0, -value => 'on', -label => 'label of my checkbox. Check Me!!!', -labelattributes => { id => 'checkboxlabel_id' } ); __END__ <label id="checkboxlabel_id"><input type="checkbox" name="my_checkbox" + value="on" />label of my checkbox. Check Me!!!</label>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: perl cgi standalone checkbox label problem
by Anonymous Monk on Apr 06, 2009 at 21:50 UTC | |
by Your Mother (Archbishop) on Apr 06, 2009 at 22:01 UTC | |
by polki (Novice) on Apr 06, 2009 at 22:11 UTC | |
by ig (Vicar) on Apr 06, 2009 at 22:12 UTC |