- or download this
my $html = $dashboard->_process_list_of_households();
print STDERR "We made it back to cgi script.\n";
...
} else {
print STDERR "\$html remains undefined for some reason.\n";
}
- or download this
$html = $self->_render_online_household_form(\%hh_values);
if(defined($html)){
...
} else {
die "\$html remains undefined after ->_render_online_household
+_form().\n";
}
- or download this
if($form->submitted && $form->validate){
my $field = $form->fields;
...
$www_hh_form = $form->render(header => 1);
return $www_hh_form;
}