I have a small problem.
I would like to use global variables in the SC header. There works with simple variables such as [varname] or even with local variables such as () vanam just fine.
Nin but I want to implement a versioning of the modules in my system. I would like to use an associative array.
$ Major = 3;
$ Sub = 0;
$ Build = 123;
$ System [<module>] [‘version’] = $ .".".$ major sub “(”.$ .")"; build
sc_set_global ($ system);
Up to here everything works just fine. There is a global array SYSTEM.
When I use now in a header (Leayout>> Header & Footer) [system ][…] I just get the word “Array”.
Derzusammenhang I do realize … SC Walk to everything in square brackets in $ _SESSION […].
But how to access a global array?