Help. Insert External table.

kayacreative

New Member
Noob here. I would like to know how i can make the html table I have in my left column an external file, i want to be able to include this table on multiple "copies" of the same page. In other words so I dont have to change the info on every page i just want to edit one file. here is the code :confused:

<table width="400" border="0" class="links" id="links" style="links" title="leftcolumnlinks">
<tr>
<td><span class="jj"><a href="autotest.html" target="_self"><img src="images/linkauto.jpg" width="381" height="35" /></a></span></td>
</tr>
<tr>
<td><span class="jj"><img src="images/linkphotography.jpg" width="381" height="35" /></span></td>
</tr>
<tr>
<td><span class="jj"><img src="images/linkweb.jpg" width="381" height="35" /></span></td>
</tr>
<tr>
<td><img src="images/linkgraphics.jpg" alt="graphicdesign" width="381" height="35" /></td>
</tr>
<tr>
<td><img src="images/linkbrand.jpg" width="381" height="35" /></td>
</tr>
<tr>
<td><img src="images/linkconsulting.jpg" width="381" height="35" /></td>
</tr>
<tr>
<td><img src="images/linkfashion.jpg" width="381" height="35" /></td>
</tr>
</table>
 

egofirm

New Member
Use a scripting language such as PHP, saving your table in say TABLE.TBL and including it in every page with say <?php include("TABLE.TBL"); ?>
 
Top