in reply to Re: Print output as a HTML table and email
in thread Print output as a HTML table and email
Also , updates should be marked as such How do I change/delete my post?
The update seems to work out to the following question
Suggestions to make this correct?my $template = HTML::Template->new( filename => 'temp.tmpl' ); @languages =(); foreach (sort keys %fm) { if ((! $fm{$_}{'cksum'}) && (! $fm{$_}{'byte'})) { @minilanguage=(); @minilanguages = ( { fmfile_name => $_ , fmfileowner => $fm{$_}{'owner'} }, ); push @language, @minilanguages; delete $fm{$_}; } } print "@languages\n"; $template->param( FMPermissionIssue => @languages ); print $template->output();
That is at least a starting point for an actual question ( How do I post a question effectively? ) but IMHO op needs to clean your room better :) still many parts missing if fixing the original is any kind of goal and SYNOPSIS of alternatives aren't enough
|
|---|