Originally Posted by
kickerbat
<?php
$curdir = getcwd ();
chdir('/hhgsnet/public_html/forum');
require_once('/hhgsnet/public_html/forum/global.php');
chdir ($curdir);
echo $headinclude;
echo $header;
echo $navbar;
?>
<?php
$string = get_include_contents('/radiodjpanel/rares/values_public.php');
function get_include_contents($filename) {
if (is_file($filename)) {
ob_start();
include $filename;
$contents = ob_get_contents();
ob_end_clean();
return $contents;
}
return false;
}
?>
<?php
echo $footer;
?>
Try That..