in reply to Re: Re: for loop over large BLOCK keeps failing
in thread for loop over large BLOCK keeps failing
You can have more diagnostic messages from perl if you use diagnostics.
I spotted one error in your code:
In the inner loop the line
shoud probably be$body = get("@img[$i]");
since you probably want to get one array element.$body = get("$img[$i]");
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re:{4} for loop over large BLOCK keeps failing
by jeroenes (Priest) on May 02, 2001 at 13:09 UTC | |
|
Re: Re: Re: Re: for loop over large BLOCK keeps failing
by cdherold (Monk) on May 02, 2001 at 13:07 UTC | |
by chipmunk (Parson) on May 02, 2001 at 20:55 UTC | |
by cdherold (Monk) on May 03, 2001 at 00:28 UTC |