Recently I've been working on a custom web app that integrates with phpbb3. In this app, I'd like to have a custom user profile page. I have my own 'users' table and the link between the two is the "user_id" field which I set when the user first enters the app. Throughout, however, there are "Submitted By:" sections with links to the user's profile page.On said profile page, I'd like to show the user's avatar straight from phpbb. This took some hackery, but I finally got it working. Behold.First off, if you're not already doing phpbb session management, here's that code. This requires your phpbb user to be logged in:define('IN_PHPBB', true);//replace $phpbb_root_path with path to your forum<
Now, for the business:
That's it! Enjoy!