View Single Post
Old 02-06-2004, 09:17 AM   #4
Charter
Head Mole
 
Charter's Avatar
 
Join Date: May 2003
Posts: 2,539
Hi. Change the following:
PHP Code:
ob_start();
require(
"/path/to/header.php");
$my_header_file ob_get_contents();
ob_end_clean(); 
to the following:
PHP Code:
ob_start();
require(
"/path/to/header.php");
$my_header_file ob_get_contents();
ob_end_clean();
echo 
$my_header_file;
exit(); 
and then call search.php to see if $my_header_file actually contains the header information.
__________________
Responses are offered on a voluntary if/as time is available basis, no guarantees. Double posting or bumping threads will not get your question answered any faster. No support via PM or email, responses not guaranteed. Thank you for your comprehension.
Charter is offline   Reply With Quote