Thanks again Durangod. The site was built in Dreamweaver by a web developer. I'll never have another custom site again. The next generation of sites will be on Wordpress. I couldn't locate the header.php file. Any ideas on where I should look? There are different pages for each of the ABOUT series pages but this is the about.php top area code:
http://www.ts-export.com/page.php?page=about<?php
header("Location: page.php?page=about");
exit;
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Exporters from Japan | TS EXPORT</title>
<style type="text/css">
<!--
body {
background-image: url(img/template/right_bg.jpg);
background-repeat: repeat-x;
background-color: #7C8AA3;
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
background-position: 0px 162px;
}
-->
</style>
<link href="ts-export.css" rel="stylesheet" type="text/css" />
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0" style="background-image: url(img/template/ts-main_bg.gif);background-repeat: repeat-x;background-color: #333333;">
<tr>
<td>
<table width="800" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<?php include("common/header.php"); ?>
</tr>
</table>
</td>
</tr>
</table><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="21" background="img/template/top_menu_bar.gif"><?php include("common/menu.php"); ?></td>
</tr>
<tr>
<td><table width="800" border="0" align="center" cellpadding="0" cellspacing="0" >
<tr>
<td width="773"><table width="717" border="0" align="right" cellpadding="0" cellspacing="0" style="border-left:solid 1px #CCCCCC; border-right:solid 1px #CCCCCC">
<?php include("common/submenu_about.php"); ?>
<tr>
<td><table width="100%" border="0" cellspacing="0" cellpadding="0" style="border-bottom:solid 1px #CCCCCC">
<tr>
<td height="42" bgcolor="#475B7E"> </td>
<td width="321" rowspan="2"><img src="img/inside/photo<?php if(isset($_GET['photo']))echo $_GET['photo']; else echo rand(1,7); ?>.jpg" alt="Photo" width="321" height="77" /></td>
</tr>
<tr>
<td><img src="img/titles/about.png" alt="Yahoo! Auction Service" width="394" height="35" /></td>
</tr>
</table></td>
</tr>
<tr>
<td height="100" valign="top" bgcolor="#122440" style="background-image:url(img/template/navy_bg_shadow.gif); background-repeat:repeat-x; padding:10px; color:#FFFFFF" >
<!-- Main Content Starts here -->
This is from page.php
<?php
require_once("Connections/data_connect.php");
mysql_select_db($database_data_connect, $data_connect);
$query_Info = "SELECT * FROM pages WHERE page = '".$_GET['page']."' ORDER BY order_no, id";
$Info = mysql_query($query_Info, $data_connect) or die(mysql_error());
$row_Info = mysql_fetch_assoc($Info);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title><?php echo ucwords(str_replace("_", " ", $_GET['page'])); ?> | TS EXPORT</title>
<style type="text/css">
Found header.php
<td colspan="2"><img src="img/template/ts-logo.jpg" alt="TS EXPORT" width="206" height="100" /></td>
</tr>
<tr>
<td width="773"><div align="right"><img src="img/template/top_logo.png" alt="Company Established 1983" width="717" height="42" /></div></td>
<td width="27"> </td>
Found that this error is only occurring when selecting the ABOUT page from the blue navigation bar:
http://www.ts-export.com/about.phpWarning: Cannot modify header information - headers already sent by (output started at /home/tsuchi/public_html/about.php:1) in /home/tsuchi/public_html/about.php on line 3
and not from the other links on the site:
http://www.ts-export.com/page.php?page=about