re 2nd obv
@array
in scalar context is the number of elements in the array. $#array is the index of the last element. ie
$#array = @array -1;
My only observation here is that:
for ($i=0; $i <@filenames; $i++)
is a little 'cleaner'.
re 3rd obv
Doesn't have to, as it's the last statement in a coding block. But, it *is* a good habit to get into.
re uncallous comment
"try debugging your code" - perhaps you could spend an extra minute or two checking
your answer before ranting :)
cLive ;-)
PS - blame any lette ommissions on my dodgy keyboad which will get eplaced soon...
Update:
PPS - try removing first print statement (why is it there?). I suggest you move the second to just above your output line (print <<EndHTML;). Other notes...
# For tidyness, change:
\*\*\*\*
# in your regexp, to:
\*{4}
# for sanity control, change
open(PAGES, "<pages.txt");
# to
open(PAGES, "<pages.txt") || die $!;
# (and do the same for you other filehandle opens)
# and I'm pretty sure that
print FILE QQ($temlate[0] ...
# should be
print FILE qq($temlate[0] ...
And, to finish, I strongly suggest you use
CGI.pm
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.