I need some help with what is probably a newbie question in terms of modifying phpBB.
I have a whole system developed in PHP, and I would like to integrate phpBB so
You can use the below to login into phpBB:
$result=$auth->login($username, $password); if ($result['status'] == LOGIN_SUCCESS) { echo "You're logged in"; } else { echo $user->lang[$result['error_msg']]; }