How-to articles, tricks, and solutions about GLOBAL-VARIABLES
Can't access global variable inside function
In PHP, if you want to access a global variable inside a function, you need to use the "global" keyword.
Using global variables in a function
In Python, you can use global variables in a function by declaring the variable as global within the function.