IN PHPBB
From phpBB Development Wiki
Define IN_PHPBB in user facing files using this syntax:
define('IN_PHPBB', true);
Check for IN_PHPBB in non-user facing files with this code:
if (!defined('IN_PHPBB'))
{
exit;
}
Define IN_PHPBB in user facing files using this syntax:
define('IN_PHPBB', true);
Check for IN_PHPBB in non-user facing files with this code:
if (!defined('IN_PHPBB'))
{
exit;
}