Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
How do I insert html links on each item? So the user can click on, say, Item B and be taken to another link?print radio_group (-name => "item", -value => ["B","T","S","M"], -labels => { "B" => "Item B (\$10)", "T" => "Item T (\$50)", "S" => "Item S (\$200)", "M" => "Item M (\$500)" }, -linebreak => 1);
|
|---|