Hey Joyce you rule, this is exactly what I needed.
Nice to see your picture from mybloglog.com too 😉
I agree about the splash page, it doesn’t bring anything to the site.
But at the same time, it’s a website targeted to a local group or community so they probably won’t care about that. And if your goal is only to give information to that small community and they all know the URL to your website, you don’t have to care about being indexed.
That may sound stupid but try to make it global first.
global $myvar;
$myvar = “testing”;
function test_func()
{
global $myvar;
echo $myvar;
}
test_func();