Quote:
Originally Posted by Logofero
Код:
Run time error 4: "Array index out of bounds"
The array size is not enough
You refer to a non-existent index.
Example:
PHP код:
new array[1000]; // Your current array
// and
array[2000] = id; // But save in a larger index than announced
|
I dont have any new arrays.