Well hello again
You may be better off in one of the other forums. Or maybe test your scripts before you post them. Either way...
Here we go...
$_SERVER[$PHP_SELF] <- Invalid. Should be $_SERVER['PHP_SELF']
echo "Hello $_SESSION['a']. <- Also invalid. Superglobals need to be removed from the string. Like
PHP Code:
echo "Hello ".$_SESSION['a'];
I find it good to just remove all globals from the string
Same here ->"Name","$_POST['a']
HTH