
sunrise11
Novice
Apr 15, 2011, 3:49 PM
Views: 11838
|
Re: [Zhris] Need to change browser's title for one page
|
|
|
Okay, I'll give the HTML Template another try. For clarification, should this go within the Perl script and not a separate HTML doc:
<html> <head> <title><TMPL_VAR NAME=TITLE></title> </head> <body> Before or beneath?
use HTML::Template; my $template = HTML::Template->new(filename => 'Header.html'); $template->param(TITLE => 'This is the page title'); print "Content-Type: text/html\n\n", $template->output; Thanks for your patience.
(This post was edited by sunrise11 on Apr 15, 2011, 3:50 PM)
|