Quote:
Originally Posted by Jiroxys7
It will return those 3 things in F2. But oddly..
PHP Code:
echo(passedeffects[i]);
Will stop after only the first line. It seems like the for loop quits for some reason after only the first run through. What could be causing this?
|
You're probably doing something accidentally like..
PHP Code:
for (temp.i = 0; temp.i < whatever; temp.i++) {
/* Code */
for (temp.i = 0; temp.i < whatever; temp.i++) {
/* broke itself */
}
}
Feel free to include the whole function.