hi together, i need help to solve this problem: i have a global variable in the model like:
test = None
def changingtest():
global test
test = 5
return None
how can i access to the variable test in every controllerfunction?
thanks for your fast help
peter

