View Full Version : Ssi


itsybitsyspider
08-17-2003, 07:36 PM
Ok, my website has 3 columns, the rightside is a table of links, the center is the content, and the left is more links. Where do I put my SSI(<!--#include file="yourfilename.txt" -->)in the HTML documents? I want the SSI to have everything except the content.

Lissa
08-17-2003, 08:32 PM
You could do something like this:

<table>
<tr>
<td><!--#include file="leftmenu.txt" --></td>
<td>content</td>
<td><!--#include file="rightmenu.txt" --></td>
</tr>
</table>

itsybitsyspider
08-17-2003, 08:51 PM
Ok i'll try that thanks lissa!