One way to do this is to use another hash.

There are a few notes in the comments.

#!/usr/bin/perl use strict; my $datafile = "data.txt"; my @now = localtime(time); open(FIL,"<$datafile") or die "Can't open data file: $!\n"; my @data = <FIL>; close(FIL); my %maxCount; my %pages; foreach my $line (@data) { # My is a function and will take a list arguement. my ($timestamp, $page, $moredata) = split('\|',$line); my @hits = localtime($timestamp); # Here I create and preset an array with a variable name defined b +y $page ### @$page = (0,0,0,0) if ($$page[3] eq ''); #Its not quite clear to me when $$page[3] gets set??? Maybe this i +s something like what you want? $pages{$page} = [] unless exists $pages{$page}; if ($hits[7] == $now[7]) { $pages{$page}[0]++; } if ($hits[4] == $now[4]) { $pages{$page}[1]++; } if ($hits[5] == $now[5]) { $pages{$page}[2]++; } $maxCount{'$page'}++; } # Not everyone would endorse this form of list initialisation my ($dAry, $wAry, $mAry) = ('','',''); foreach my $page (keys %pages) { $dAry .= "$pages{$page}[0],"; $wAry .= "$pages{$page}[1],"; $mAry .= "$pages{$page}[2],"; } #... continued exit;

Nah! You're thinking of Simon Templar, originally played (on UKTV) by Roger Moore and later by Ian Ogilvy

In reply to Re: Problems with 'strict' and variables created on the fly by BrowserUk
in thread Problems with 'strict' and variables created on the fly by nedals

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.