in reply to formatting a checkbox label w/CGI.pm
..but it's definately not HTML. In any case, look into CGI.pm. I notice you have a few typos in your code as well:'<b val1 /b>'
You also indicate you're using the %labels hash, but you called it %lables in your example. As long as you are consistant with your misspelling of hash names, perl won't care, but if this was a mistake, you'll definately not get the results you want.%lables = ( 'key1 => '<b val1 /b>', ^ no closing quote 'key2 => '<b val2 /b> ); ^ missing ' ^ another one missing
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: formatting a checkbox label w/CGI.pm
by mig (Initiate) on Jul 24, 2002 at 19:01 UTC |