I have sucessfully created as Radio-group along the lines of

@TiesArray = SSDArray($uniqueorgref);
if (@TiesArray[0] ne "") {

@TiesDesc = SSDDescArray($uniqueorgref);
%TiesHash = @TiesDesc;
$q = new CGI;
print   $q->start_form(-method=>"POST",
-action=>"http://....../cgi-bin/ViewQuote.pl";),
$q->p("The system has identified .... etc and click the SEND
button."),
$q->hidden("uniqueorgref", $uniqueorgref),
$q->radio_group(-name=>"hideordNo", -values=>\...@tiesarray, -
linebreak=>"true", -labels=>\%TiesHash),
$q->submit("Send"),
$q->hr,
$q->end_form;
}


My problem is that the hash that describes the radio group values -
%TiesHash - (and should replace them on screen) is not operating. Any
thoughts?



-- 
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/


Reply via email to