RE: Array de-referencing problem

2003-11-21 Thread Jenda Krynicky
From: "Paul Harwood" <[EMAIL PROTECTED]> > Thanks! > > I got it to work using: > > $server {$thread}->{$logfile}->{$delay} = [EMAIL PROTECTED]; > > But I guess it's better to use an array reference? You are using an array reference. The difference is that $server {$thread}->{$logfile

RE: Array de-referencing problem

2003-11-21 Thread Paul Harwood
onversation: Array de-referencing problem Subject: Re: Array de-referencing problem From: "Paul Harwood" <[EMAIL PROTECTED]> > I wrote the following code: > > $thread = "TEFD0"; > $logfile = "V_DEBUG12121.txt"; > $delay = "10232"

Re: Array de-referencing problem

2003-11-21 Thread Jenda Krynicky
From: "Paul Harwood" <[EMAIL PROTECTED]> > I wrote the following code: > > $thread = "TEFD0"; > $logfile = "V_DEBUG12121.txt"; > $delay = "10232"; > @servers = qw (SERVER1 SERVER2 SERVER3 SERVER4); > $server {$thread}->{$logfile}->{$delay} = @servers; The first problem is here. You are evaluating