if i declare an instance of a class in the top of my php file, then
have html, then later on user $myClassInstance->myMethod(); --
myMethod() does not execute, only when i have the instantiation of the
class right before the call to the method does it work. any ideas?