hi guys,
I'm working on a simple threading in a website, after a thread is completed I want to return the values returned by thread function so I want to use global variables to store it. and later I'll get the values from the global variable.I tried session,cookies but values got reset So used static but it saves the values of multiple user accessing the website is there any other possibility of global variable to be used for single user specific?Thanks in advance.
What I have tried:
hi guys,
I'm working on a simple threading in a website, after a thread is completed I want to return the values returned by thread function so I want to use global variables to store it. and later I'll get the values from the global variable.I tried session,cookies but values got reset So used static but it saves the values of multiple user accessing the website is there any other possibility of global variable to be used for single user specific?Thanks in advance.