15.04.2015, 15:24
Change:
by:
And replaces all the lines in the function that use that string variable by string1, the problem is that you have two variables with the same name, a global and a local and the compiler does not know which one to use.
PHP код:
new string[128];
PHP код:
new string1[128];