atrum Posted March 19, 2009 Share Posted March 19, 2009 I have been trying to find out if it is possible to create a global variables file. So that instead of putting all my vars, like field names or ids, common naming conventions and things like that. Then I would be able to use those vars on any page. Any one have any insight on this? Quote Link to comment https://forums.phpfreaks.com/topic/150155-global-variables-file/ Share on other sites More sharing options...
emehrkay Posted March 19, 2009 Share Posted March 19, 2009 yeah, just create a js file with your global vars and include it on every page. It would probably be best to wrap your vars in a namespace so that you ensure they aren't overwritten var atrum_app = { var_1: 'some value', var_2: 'value' }; //usage atrum_app.var_1; //some value Quote Link to comment https://forums.phpfreaks.com/topic/150155-global-variables-file/#findComment-788576 Share on other sites More sharing options...
atrum Posted March 19, 2009 Author Share Posted March 19, 2009 hmmm. ok. and can you explain the part about including the file on ever page. How do I include with javascript? Quote Link to comment https://forums.phpfreaks.com/topic/150155-global-variables-file/#findComment-788595 Share on other sites More sharing options...
atrum Posted March 19, 2009 Author Share Posted March 19, 2009 So, say for example that I have 10 txt fields on a form, and I have other forms with the same naming conventions. If I wanted to declare those txt fields in a global array, then include them on each page that I used those names. Then I can use them on any function, so long as I include that file. Correct? Quote Link to comment https://forums.phpfreaks.com/topic/150155-global-variables-file/#findComment-788613 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.