Now, since I am a relative new-bee when it comes to some of this stuff, careful before you --.
I have a couple questions about mod_perl's way of declaring functions. I've noticed a couple differences between CGI and mod_perl. Noted below:
sub cgi_sub(){
print $_[0];
}
sub mod_perl_sub {
print $_[0];
}
The real question here is with the
()'s. Do I need them for a cgi script? I know I could try it without, and it'll work. So maybe the real-
real question here is, can somebody explain what happens to $_ and @_ when you have a empty ()'s in the declration of a function?
This stemmed when I had a script that would run perfectly as a cgi script. When ported to mod_perl, I had left the
()'s and the fuctions wheren't recieving paramaters properly.
Maybe I'm crazy and completly missing something ELSE, but it
couldnt hurt to ask.
:)
I guess I'm just curious, and well, curious.
_14k4 -
webmaster@poorheart.com (
www.poorheart.com)
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.