Writing code you don't understand two days later is a bad thing. Perhaps you need to comment the code more.
The goal in this case, though, is to learn how to modularize your code effectively. Most CGI programs I write use a dispatch table:
my $thing = $cgi->param('action');
my %actions = (
login => [ \&login ],
main => [ \&view_page, 'front' ],
index => [ \&view_page, 'index' ],
unknown => [ sub { die "unknown action '$thing'" } ],
);
my ($func,@args) = @{ $actions{$thing} or $actions{unknown} };
$func->(@args);
Basically, I set up a hash of function references (and their arguments). Then I call the function corresponding to the action.
Most of my code is broken down into functions in the case of main functionality and repeated functionality -- in other words, the main actions (logging in, viewing a page, searching) are in functions, and common tasks (reading a config file, saving data) are in functions as well.
japhy --
Perl and Regex Hacker
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|