in reply to Print output as a HTML table and email

Please don't take this the wrong way but your post is difficult to look at.

Use <p></p> and <code></code> tags to mark up your question.

Preview before creating.

Replies are listed 'Best First'.
Re^2: Print output as a HTML table and email
by Anonymous Monk on Dec 08, 2014 at 11:45 UTC

    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