Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
foreach $address (@dbs) { open (DAT,"< $memberinfo/$address"); @dbase_array = <DAT>; print "dbase_array = @dbase_array<br>"; print "address=$address<br>"; close(DAT); %unsubscribe = ($address => @dbase_array,); print "hash = %unsubscribe<br>"; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: passing information into a hash
by jeffa (Bishop) on Sep 29, 2003 at 14:04 UTC | |
by hmerrill (Friar) on Sep 29, 2003 at 14:50 UTC | |
by jeffa (Bishop) on Sep 29, 2003 at 14:54 UTC | |
by hmerrill (Friar) on Sep 29, 2003 at 17:08 UTC | |
by jeffa (Bishop) on Sep 29, 2003 at 19:00 UTC | |
by Anonymous Monk on Sep 29, 2003 at 14:40 UTC |