So I've written a set of scripts that creates a indexed mySQL-driven website with some basic document management features. I developed it with use strict; and it runs beautifully. I guess that's the first step to getting it to run correctly with mod_perl.

The thing I'm worrying about is in some areas, code is executed based on the ABSENCE of a variable- for instance, if deleteflag=yes is not "posted" to the script, the script doesn't execute a loop, it skips ahead.

I've undef'd the hash that stores the "posted" variables before the variables are parsed in my script as a precautionary measure. Is this enough to make sure my hash will be empty, and not cause problems down the line with my script looking for the absence of variables?


In reply to mod_perl- am I safe? by Hero Zzyzzx

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • 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, details, 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, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.