PDA

View Full Version : HTML table: how do i add footer section to my html table layout:?


jam
11-18-2007, 03:38 AM
Hi

My HTML table has head.html,menu.html, and database info included using php include commands as follows, they all work fine, i want to add a footer section how do do this?:

<TABLE ALIGN="left" BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="100%">
<TR ALIGN="left" VALIGN="middle">
<TD> include("includes/head.html"); </TD>
</TR>
<TR ALIGN="left" VALIGN="middle">

<TD>
<TABLE ALIGN="left" BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="100%">
<TR ALIGN="left" VALIGN="middle">
<TD width=30> include("includes/menu.html"); </TD>
<TD> <?php mysql database data goes here inside php tags ?> </TD>
</TR>
</TABLE>
</TD>

</TR>
</TABLE>


pls provide code,

thanks in advance

Tovia S

i♄SPEED
11-18-2007, 03:48 AM
Add,

<TR ALIGN="center" VALIGN="middle">