| 
<?
 $userTable = "users";                    // Table in which your username / password combinations are
 $userNameField = "username";        // Field in the user table containing the usernames
 $userGroupIDField = "groupid";  // Field in the user table containing the group id
 $passwordField = "password";        // Field in the user table containing the password
 $userIDField = "userid";            // Field in the user table containing the user id
 $otherConditionField = "active";    // Field in the user table that contain a condition
 $otherConditionValue = "1";                // Value condition must meet
 $textPass = false;                            // If TRUE the password is text; If FALSE the password is MD5
 
 ?>
 |