I\'m having trouble with global variables in php. I have a $screen var set in one file, which requires another file that calls an initSession() def
$screen
initSession()
You need to put "global $screen" in every function that references it, not just at the top of each file.