It appears you have not yet registered with our community. To register please click here...
<?php global $ADMIN_PWD; if ( $member == 1 ) { if (isset($_SERVER["PHP_AUTH_USER"]) && $_SERVER["PHP_AUTH_USER"] == "admin" && $_SERVER["PHP_AUTH_PW"] ==$ADMIN_PWD) { return true; } else { header("WWW-Authenticate: Basic realm=\"Directory Administration\""); header("HTTP/1.0 401 Unauthorized"); }} ?>