in reply to Re: CGI.pm Disillusionment
in thread CGI.pm Disillusionment
That sort of thing.. wherein all html formatting subroutines are in a seperate module called HTML.pm or somesuch. For some reason I can do this quicker than I can with Template::Toolkit or CGI.pm.. Reinventing the wheel or not.my @select_box_list; foreach (@some_array_containing_a_hashref){ push(@select_box_list,$html_obj->HTML_Select_List_Option(name=>" +select_your_state",value=$_->{whatever_value},text=>$_->{whatever_des +cription}); }
|
|---|