Before anyone rips me for not using CGI, I want to let it be known that I am unable to use CGI for this application due to the server I will be using it on.
I don't buy that one. Sorry.
If it's a recent usable version of Perl, then CGI.pm came with it.
Even if it's not, CGI.pm is a single file. Download it, extract it from the distribution,
and place it in the "current directory", likely the same place as your script,
or add a use lib... directive to point to its location.
Even if that option is not available, because they've said "your application must fit in a single file" (a ludicrous requirement, but work with me on this one),
you can edit your single file as follows:
BEGIN {
... insert contents of CGI.pm here, stopping just before the __END__ t
+oken
}
BEGIN {
CGI->import(":all");
}
... your code goes here ...
my $foo = param("bar");
... more of your code goes here ...
There. No excuses. Use CGI.pm.
-- Randal L. Schwartz, Perl 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.
|
|