Print Results

Results are returned in a row, so you can paste them into a table

Use Text::Template to insert dynamic HTML into static HTML

sub PrintRedirect {

use Text::Template; no strict; disable diagnostics;

$Title = shift;

$Heading = shift;

$template = new Text::Template( TYPE => FILE, SOURCE => "$main::docroot/logout.tmpl");

print header(-refresh=>"10; URL=$main::BaseCGI/Login", -type=>'text/html');

$text = $template->_in(OUTPUT => \*STDOUT);

}

Previous slide Next slide Back to first slide View graphic version