Runtime error: see the code
PHP Code:
public sql_init()
{
......
new Query[2048]
......
load_other()
......
}
load_other()
{
......
new oQuery[2048] //Error in this line
......
}
I modified the case, then no error:
PHP Code:
new Query[2048]
public sql_init()
{
......
......
load_other()
......
}
load_other()
{
......
......
}
Why? I can not define very variable?
Please advise!