Thanks for the reply.
I changed
Code:
ob_start();
include('http://www.supermandatabase.com/header.php');
$includedphp = ob_get_contents();
ob_end_clean();
to
Code:
ob_start();
include('/home/superman/public_html/header.php');
$includedphp = ob_get_contents();
ob_end_clean();
and I also tried
Code:
ob_start();
include('./header.php');
$includedphp = ob_get_contents();
ob_end_clean();
I didn't change any of the other things I listed above. Still no luck...
Any other suggestions? Thanks again.
SC