J jp1 Client Регистрация 23.01.2011 Сообщения 234 Благодарностей 2 Баллы 0 27.11.2012 #1 Quick question, when does a local value get reset that a global value won't reset? I've tried clear cache and clear cookies but it's not that.
Quick question, when does a local value get reset that a global value won't reset? I've tried clear cache and clear cookies but it's not that.
rostonix Известная личность Регистрация 23.12.2011 Сообщения 29 067 Благодарностей 5 719 Баллы 113 27.11.2012 #2 Variables are not bound with cookies or cache. Local variables are applied only to current instance. After instance restarts, value is lost. Global variables should be changed manually if you need to change them or reset them.
Variables are not bound with cookies or cache. Local variables are applied only to current instance. After instance restarts, value is lost. Global variables should be changed manually if you need to change them or reset them.