Help for this page

Select Code to Download


  1. or download this
    while(my $row = $sth->fetchrow_hashref()) {
       ($cntct_date) = $row->{"CONTACT_DATE"};
    
  2. or download this
       $earliest_date = "30000101";
    
  3. or download this
    $date1 = ParseDate($earliest_date);
    $date2 = ParseDate($cntct_date);
    ...
      print "$cntct_date was earliest--save it.\n";          
      $earliest_date = $cntct_date;
    };