in reply to perl cgi-bin script
in your code, which is a "no no". The correct syntax should be$part = @array[$antal];
I double checked your code, and confirmed with my observation. Your original code of @array[$antal] created a slice, and you were assigning a list into a scalar.$part = $array[$antal];
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: perl cgi-bin script
by BUU (Prior) on Nov 15, 2003 at 04:07 UTC |