ok, so this is a page i am working on. i start the table in the header, and end it in the footer. the problem is that only the footer and page display, not the header.
here is my code:
header:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title> <?php echo $title; ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<body>
<table width="80%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><object align="left" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="600" height="30">
<param name="movie" value="header.swf">
<param name="quality" value="high">
<embed src="header.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="600" height="30"></embed>
</object>
</td>
</tr>
page:
<?php
$title='PolyGeeks: Where G33k is Chic ';
require_once('includes/header.inc.php');
?>
<tr>
<td>test</td>
</tr>
<?php
require_once('includes/footer.inc.php');
?>
footer:
<tr>
<td>
<table width="100%" border="0">
<tr>
<h2> <td bgcolor="lightgreen">Contact Us at [email]PolyGeeks@polyprep.org[/email]</td>
</h2>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
thanks alot to anyone who replies!