Hi all,
I think I know the answer to this question, but will ask anyway.....
The server I am on does not allow SSI, but I have several pages where there is a lot of static HTML code. I was using print<< statements to work around that when I only had 2 pages to worry abuot. But the project has been expanded to roughly a dozen pages and I don't want to have to use that on every page.
So, my thinking was to place the here statements in seperate files and reference them by something like
but that isn't working.
Any suggestions?
Thanks!
Jim
I think I know the answer to this question, but will ask anyway.....
The server I am on does not allow SSI, but I have several pages where there is a lot of static HTML code. I was using print<< statements to work around that when I only had 2 pages to worry abuot. But the project has been expanded to roughly a dozen pages and I don't want to have to use that on every page.
So, my thinking was to place the here statements in seperate files and reference them by something like
Code:
open TOP, 'top.cgi';
while (<TOP>)
print "$_";
}
but that isn't working.
Any suggestions?
Thanks!
Jim