take this for example
full.html is kinda template
full.html
Code:
<html>
<body>
<table width="100%">
<tr><td colspan="3" width="100%">header here </td>
</tr>
<tr valign="top">
<td width="12%" valign="top"> Column Left</td>
<td width="86%">Body Area</td>
<td width="12%" valign="top">Column Right</td>
</tr>
<tr><td colspan="3" width="100%">Footer here</td>
</tr>
</table>
page_top.php
Code:
<html>
<body>
<table width="100%">
<tr><td colspan="3" width="100%"><?php require "header.php"; ?></td>
</tr>
<tr valign="top">
<td width="12%" valign="top"><?php require "column_left.php"; ?></td>
<td width="86%">
page_bottom.php
Code:
</td>
<td width="12%" valign="top"><?php require "column_right.php"; ?></td>
</tr>
<tr><td colspan="3" width="100%"><?php require "footer.php"; ?></td>
</tr>
</table>
column_right.php
Code:
<table width="100%">
<tr>
<td>This is Column Right</td>
</tr>
<tr><td>Menu Item 1</td>
</tr>
<tr><td>Menu Item 2</td>
</tr>
<tr><td>Menu Item 3</td>
</tr>
</table>
column_left.php
Code:
<table width="100%">
<tr>
<td>This is Left Column</td>
</tr>
<tr><td>Menu Item 1</td>
</tr>
<tr><td>Menu Item 2</td>
</tr>
<tr><td>Menu Item 3</td>
</tr>
</table>
header.php
Code:
<table width="100%">
<tr>
<td>This is Herader</td>
</tr>
</table>
footer.php
Code:
<table width="100%">
<tr>
<td>This is footer</td>
</tr>
<tr><td>footer Page has its own table</td>
</tr>
</table>
index.php
Code:
<?php require "page_top.php"; ?>
<table width="100%">
<tr>
<td>This is index page</td>
</tr>
<tr><td>Index Page has its own table</td>
</tr>
</table>
<?php require "page_bottom.php"; ?>
newsletter.php
Code:
<?php require "page_top.php"; ?>
<table width="100%">
<tr>
<td colspan="2">Plesase Login here</td>
</tr>
<form action="nowhere.php">
<tr>
<td>Enter Email</td>
<td><input name="email"></td>
</tr>
<tr><td colspan="2" align="center"><input type="submit"></td>
</tr>
</form>
</table>
<?php require "page_bottom.php"; ?>
newsletter.php and index.php are the main pages
others are just included
i think ull figure out rest
or ill explain later :P
Bookmarks