blue_chi
10-17-2004, 12:58 PM
I'm loading the phpinclude templates into an external php, some of the code is being printed out along with the other text. Here are my codes:
PHPINCLUDE
ob_start();
include('http://www.oman3d.com/header.php');
$included = ob_get_contents();
ob_end_clean();
Here is the external page:
<?php
// GO TO FORUM DIR
chdir('./forum');
// STANDARD VBULLETIN STUFF
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'script_name');
require_once('./global.php');
// GENERIC_SHELL VARS
$pagetitle = "Title of Page";
eval('$HTML = "' . fetch_template('phpinclude_start') . '";');
eval('print_output("' . fetch_template('GENERIC_SHELL') . '");');
?>
Here is what comes out:
http://www.oman3d.com/testing.php
Could anybody please help.
PHPINCLUDE
ob_start();
include('http://www.oman3d.com/header.php');
$included = ob_get_contents();
ob_end_clean();
Here is the external page:
<?php
// GO TO FORUM DIR
chdir('./forum');
// STANDARD VBULLETIN STUFF
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'script_name');
require_once('./global.php');
// GENERIC_SHELL VARS
$pagetitle = "Title of Page";
eval('$HTML = "' . fetch_template('phpinclude_start') . '";');
eval('print_output("' . fetch_template('GENERIC_SHELL') . '");');
?>
Here is what comes out:
http://www.oman3d.com/testing.php
Could anybody please help.