the purpose of my function is to run some code that I'm planning on running on many pages, not to return a variable... The problem is that it ends up creating a variable
if($Row['EMAILADDRESS']<>''){$EmailVisibility = "hidden";}else{$EmailVisibility = "visible";}
within itself to show or hide a div (another function within the body of the page). I needed to pass the value of that variable into the other function and stumbled upon global...
Maybe there's a better/more efficient way to do this?