<?php
 
/**
 
* This is example file to integrate your existing site with phpBB3
 
* @version 0.1
 
* @copyright (C) 2009 Rajesh Bhatia. All rights reserved
 
* @license http://www.gnu.org/copyleft/lesser.html LGPL License
 
* @author Rajesh Bhatia <[email protected]>
 
**/
 
require_once("synchronizephpBB3.bl.php");
 
$objPHPBB3 = new SynchronizephpBB3("tblMember");
 
$_SESSION['ACCESSED_PHPBB3']='yes';
 
$objPHPBB3->SessionManage('forum');//folder name of  phpBB3 installation will be passed
 
?>
 
 |