Help for this page

Select Code to Download


  1. or download this
    push @$records, {
        timereceived => $dtevent,
        ...
    
  2. or download this
    @$records = sort { $a->{timereceived} <=> $b->{timereceived} } @$recor
    +ds;