> > From: Tomasi, Chuck [mailto:[EMAIL PROTECTED]] > > > > @UserCache; # Place to store data already seen > > This is an array, not a hash, depending on your range of > id numbers, you might want: > my %UserCache; # BTW, Are you using 'strict'??
Tried it both ways. I realize it is a sparse array now and I could use a hash, but neither are doing the proper thing for me. Both hold the right information, but I can't seem to get it back to the caller for some reason unless it is read from the database directly. Yes, use strict and perl -w are being used all over. --Chuck
