in reply to Re^3: thoughts on creating modular perl for web application
in thread thoughts on creating modular perl for web application
This approach works, but I'm looking for a more elegant solution, mainly with the indivdual modules as there is a ton of repetition with each module having its own getContent() subroutine. I'm also worried about overlap in any way, if that's possible. Any suggestions?use Footer; my $footer = Footer->new(); print $footer->getContent();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: thoughts on creating modular perl for web application
by Tanktalus (Canon) on Mar 15, 2005 at 21:48 UTC |