[query]SELECT * FROM user WHERE username = '$username' AND password = '$password'[/query]
If that query returns no rows there is no user with that username and password. Password is hashed md5( md5($password) $salt). Salt comes from the user table.
Then you can look at is_member_of function in functions.php to check if the user is in a usergroup.
Sorry I don't know much about C++ so I can't make a code for you.
|