if this page is ./codehelp.php
and has something like
<?
require("header.inc");
bla bla php stuff ehre
?>
HTML stuff here bla bla
<?
more php stuff
?>
end html here
<?
require ("footer.inc");
?>
You will not be able to insert the header stuff (I beleive) but everything on the codehelp.php page can be piped into the middle of the page with
@ $fp = fopen("$DOCUMENT_ROOT/codehelp.php", "r"); // use backslashes if on win platform
// write each line in the codehelp.php file
echo "<PRE>";
while (!feof($fp))
{
$disp__each_line=fgets($fp, 100);
echo $disp_each_line."<br>";
}
echo "</PRE>";
// or passthru the file
@ $fp = fopen("$DOCUMENT_ROOT/codehelp.php", "r"); // use backslashes if on win platform
echo "<PRE>";
fpassthru($fp);
echo "</PRE>";
Give those a shot...