To get the name of the current user, use COM_getDisplayName().
But to restrict access, you should really use Geeklog's permission system. You can easily create a new group, say, "Customer", and then check if the current user is in that group with
Text Formatted Code
if (SEC_inGroup("Customer")) ...
There's a good
introduction to Geeklog programming on our wiki.
bye, Dirk