Quote:
Originally Posted by killerogue
So what about returning information through this, doesn't seem to work?
|
Not sure but something like this would probobly work:
PHP Code:
function func()
return "Hi";
function onCreated()
{
t = new TStaticVar();
t = this.func;
echo(t);
}