Warning: Cannot modify header information - headers already sent by (output started at /home/mysite/public_html/design/includes/header_tags.php:78) in /home/mysite/public_html/design/includes/functions.php on line 3
<?php
require('../../design/includes/application_top.php');
require (HOME_DIRECTORY. 'design/includes/header_tags.php');
require('banner_functions.php');
?>
<?php require (HOME_DIRECTORY . 'design/includes/header2.html'); ?>
<a href="<?php echo $PHP_SELF . '?do=banner_stats'; ?>">Stats</a>
<a href="<?php echo $PHP_SELF . '?do=banner_upload'; ?>">Add Banner</a>
<a href="<?php echo $PHP_SELF . '?do=banner_check_links'; ?>">Dead Banners</a>
<?php
if ($GET['do'] == "banner_stats")
require ($GET['do'] . '.php');
else if ($GET['do'] == "banner_upload")
require ($GET['do'] . '.php');
else if ($GET['do'] == "banner_check_links")
require ($GET['do'] . '.php');
?>
I know that i can add the line below to my .htaccess file to make it go away...
PHP_FLAG output_buffering on
but i want to know what is causing it..
and i have researched it online and verified that there is no output before or after <? .. ?>
header_tags.php:78
<?php
$title = "my Site" ; ....
?>
line 76: <html>
line 77: <head>
line 78: <?php echo $title; ?>
line 79: <META name="description" content="<?php echo $meta_name_description; ?>">
functions.php on line 3
line1: <?php
line2: function redirect_to_url($url) {
line3: header('Location: ' . $url);
line4: }
line5: function get_myoperating_system($agent){
thanks for ur help.