bar10der has asked for the wisdom of the Perl Monks concerning the following question:
Above is working fine but in case a new field is added or discarded, I have to change my script and I want to avoid this. HTML form field names are same as in oracle table's column name and I can extract fieldname and corresponding value from the tables and all that I want to know - is there a better way for assigning values to the form fields? Any help will be greatly appreciated.my $template = $self->load_tmpl('acc.html'); $template->param($errs) if ref $errs; ##Validate input $template->param( MONTH => $monthName, YEAR => $whichYear, ACC => $acName, LEFT => $lstring, f0 => $data[0], f1 => $data[1], ... ... f..n => $data[..n], ); return $template->output;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Template Stuff
by matija (Priest) on Jun 11, 2004 at 10:49 UTC | |
|
Re: Template Stuff
by BUU (Prior) on Jun 11, 2004 at 10:51 UTC | |
|
Re: Template Stuff
by neniro (Priest) on Jun 11, 2004 at 10:53 UTC |