Item: PHPMyStats - PHPBB By: Willem van Leeuwen 

Jack Terveer mailed me this PHPBB integration mod, I didn't test it, but I suppose it works.

To add a phpbb-page to the stats, put the following code to your php-page:

// PHPMyStats by willemvanleeuwen.nl & MrASCII.nl
$_GET["pagina"] = "pagename";
include(
$phpbb_root_path . 'path_to_dir_of_phpmystats/count.'.$phpEx);
// End of stats

example:

// PHPMyStats by willemvanleeuwen.nl & MrASCII.nl
$_GET["pagina"] = "Forum Index";
include(
$phpbb_root_path . 'stats/count.'.$phpEx); // in this case count.php is in the directory "stats" in phpbb's root directory
// End of stats