in reply to Re: compilation errors???
in thread compilation errors???
My only observation here is that:$#array = @array -1;
is a little 'cleaner'.for ($i=0; $i <@filenames; $i++)
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...
And, to finish, I strongly suggest you use CGI.pm# 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] ...
|
|---|