localtime() function was the key
$modtime = localtime($mtime);
Complete script below:
#!/usr/bin/perl
print "Content-type: text/html\n\n";
print "<h1>Statistics </h1>";
use File::Listing;
for (parse_dir(`ls -l`)) {
($name, $type, $size, $mtime, $mode) = @$_;
@log...