Re: Use of uninitialized value in numeric ne error
- From: yitzle@xxxxxxxxxxxxxxxxxxxxx (Yitzle)
- Date: Fri, 21 Dec 2007 12:39:24 -0500
I'd guess $line is never set before the first time it is compared to 99.
Either (1) change line 11 to:
$line = 0;
while ( $line != 99){
or (2) use a do-while loop.
do {
...
} while ( $line != 99);
.
- References:
- Use of uninitialized value in numeric ne error
- From: Lerameur
- Use of uninitialized value in numeric ne error
- Prev by Date: Re: duration of iterations of a for-loop
- Next by Date: Re: Use of uninitialized value in numeric ne error
- Previous by thread: Use of uninitialized value in numeric ne error
- Next by thread: Re: Use of uninitialized value in numeric ne error
- Index(es):