I would like to include a file that is generated by an php script. I
am currently loading a html template:
my $template = HTML::Template->new(filename =>
"template/mainpage.templa te",
die_on_bad_para ms => 0);
And in mainpage.templa te I have the line:
..
..
..
<TMPL_INCLUDE NAME="myfile.ht ml">
..
..
..
Instead of myfile.html loading I would like to load the html generated
by myfile.php. Is there a way to do this?
Chris
am currently loading a html template:
my $template = HTML::Template->new(filename =>
"template/mainpage.templa te",
die_on_bad_para ms => 0);
And in mainpage.templa te I have the line:
..
..
..
<TMPL_INCLUDE NAME="myfile.ht ml">
..
..
..
Instead of myfile.html loading I would like to load the html generated
by myfile.php. Is there a way to do this?
Chris
Comment