User Info
The primary source of information about a user comes from the environment. The HTTP server sets up certain environment variables to contain information about the remote user. In Perl, these variables are accessible through the %ENV associative array. In C, you will need to use the getenv call to access the values of the variables. The relevant variables are:…

