in reply to uninitialized value in hash element Error
To see if there's anything defined for $fields{"TechEmail"}, which, as you're checking it, must sometimes be false.if ($fields{"TechEmail"} ne "")
If you use "defined" it should go away:
if ( defined ($fields{"TechEmail"}) )
Every bit of code is either naturally related to the problem at hand, or else it's an accidental side effect of the fact that you happened to solve the problem using a digital computer.
M-J D
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: uninitialized value in hash element Error
by Dru (Hermit) on Jul 04, 2003 at 12:56 UTC |