inside public execfunc(<<HERE>>);
it is
local variables, and it doesn't matter what names of that.
PHP Code:
public stage_a() {
new bla1, bbras, plsr
execfunc(bla1, bbras, plsr)
}
public stage_b() {
new a, b, c
execfunc(a, b, c)
}
public execfunc(local1,local2,local3) {}
also you dont send a variable by "name". program send a variable by link or by value
__________________