test tabs

<?php if (!$GLOBALS["user"]-?>uid) : ?>
not logged in - print something here...
<?php endif; ??>
<?php if ($GLOBALS["user"]-?>uid) : ?>
logged in - print something here...
<?php

$user = $GLOBALS["user"]->uid;

print $user;

$name = $GLOBALS["user"]->name;

print $name;

$arr = $GLOBALS;

foreach ($arr as $key=>$value) {
print "
$key";
}

endif; ?>