wstarrs has asked for the wisdom of the Perl Monks concerning the following question:
The program does not even seem to get into the first if statement... thanks, billsub check_dcr { my(@keys) = keys %temp_dcr; foreach $key (@keys) { if ("$temp_dcr{$key}{RightNavLaunchDate}" le $today) { if ("$temp_dcr{$key}{ShowPersonal}" eq "Personal") { $pers_dcr_files{$key} = $temp_dcr{$key}; } if ("$temp_dcr{$key}{ShowHome}" eq "Home") { $home_dcr_files{$key} = $temp_dcr{$key}; } if ("$temp_dcr{$key}{ShowBusiness}" eq "Business") { $bus_dcr_files{$key} = $temp_dcr{$key}; } } # End if statement to check for Launch Date } # End foreach loop to check all keys in the temporary hash } # End routine to check the temp hash and send out keys to specified +hashes
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Hash Problems
by chipmunk (Parson) on May 16, 2001 at 23:39 UTC | |
by wstarrs (Acolyte) on May 16, 2001 at 23:43 UTC | |
by chipmunk (Parson) on May 16, 2001 at 23:51 UTC | |
|
Re: Hash Problems
by Anonymous Monk on May 16, 2001 at 23:37 UTC | |
|
Re: Hash Problems
by Anonymous Monk on May 16, 2001 at 23:46 UTC | |
by wstarrs (Acolyte) on May 16, 2001 at 23:59 UTC | |
by Anonymous Monk on May 17, 2001 at 00:05 UTC | |
by Anonymous Monk on May 17, 2001 at 00:29 UTC | |
by wstarrs (Acolyte) on May 17, 2001 at 00:21 UTC | |
by chipmunk (Parson) on May 17, 2001 at 00:34 UTC | |
|