in reply to inserting HTML file in a PERL script
with the template.htm file containing:my $variable = 'This is a value!'; my $variable_name = '$variable'; my $template = snarf('template.htm'); $template =~ s/\Q$variable_name\E/$variable/g; print $template; sub snarf { local $/ = undef; my $template_file = shift; open F, $template_file or die "can't open $template_file"; my $template = <F>; close F; $template; }
<HTML> <HEAD> <TITLE>Title</TITLE> </HEAD> The variable is : $variable <BR><BR> <TABLE cellSpacing=0 cellPadding=0 width="100%" border=0> <TR><TD> <HR color=#99ffcc SIZE=4> <FONT face=Arial color=#99ffcc><B> Bottom text </B></FONT> </TD></TR></TABLE> </BODY> </HTML>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: inserting HTML file in a PERL script
by thetallblondguy (Initiate) on May 29, 2005 at 13:12 UTC | |
by davidrw (Prior) on May 29, 2005 at 15:24 UTC | |
by Tortue (Scribe) on May 29, 2005 at 19:04 UTC |