Thread
:
Need help modifying a file for application license assignments
View Single Post
11-12-2011, 03:50 PM
PM User
|
#
6
FishMonger
Super Moderator
Join Date: May 2005
Location: Southern tip of Silicon Valley
Posts: 2,757
Thanks: 2
Thanked 149 Times in 144 Posts
There are a number of issues I could point out, but the main issue to fix to get you rolling is your loop initialization.
change:
Code:
foreach $key (%hash){
to:
Code:
foreach $key (
keys
%hash){
FishMonger
View Public Profile
Find More Posts by FishMonger