ok, i uploaded all the files to the test server, and it dont work, what i did was this. i make a HTML page, took the top part right before where the main content goes, like this.
CODE
<html>
<head>
<title>LandLine Communitcations Inc.</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="760" height="301" border="0" align="center" cellpadding="0" cellspacing="0" id="Table_01">
<tr>
<td height="84">
<img src="images/mobile_01.jpg" width="229" height="84" alt=""></td>
<td>
<img src="images/about_light.jpg" width="101" height="84" alt=""></td>
<td>
<img src="images/phones_light.jpg" width="101" height="84" alt=""></td>
<td>
<img src="images/cabling_light.jpg" width="100" height="84" alt=""></td>
<td>
<img src="images/security_light.jpg" width="100" height="84" alt=""></td>
<td>
<img src="images/mobile_dark.jpg" width="102" height="84" alt=""></td>
<td>
<img src="images/mobile_07.jpg" width="27" height="84" alt=""></td>
</tr>
<tr>
<td height="179" colspan="3">
<img src="images/mobile_08.jpg" width="431" height="179" alt=""></td>
<td colspan="4">
<img src="images/mobile_09.jpg" width="329" height="179" alt=""></td>
</tr>
<tr valign="top">
<td colspan="7"><table width="98%" border="0" align="center" cellpadding="2" cellspacing="0">
<tr>
<td>
thats the top, yes i know its only half a webpage.
http://www.ask4technology.com/sites/landli...orking/top.htmlthen i took the bottom part which is this.
CODE
</td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>
thats the bottom
http://www.ask4technology.com/sites/landli...ing/bottom.htmlnow i have this as the page i want.
CODE
<? include('top.html'); ?>
<? include('/specs/siemens_ct66.txt'); ?>
<? include('bottom.html'); ?>
now in all theory this should work right? it should be the same if it was one page that looked like this:
CODE
<html>
<head>
<title>LandLine Communitcations Inc.</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="760" height="301" border="0" align="center" cellpadding="0" cellspacing="0" id="Table_01">
<tr>
<td height="84">
<img src="images/mobile_01.jpg" width="229" height="84" alt=""></td>
<td>
<img src="images/about_light.jpg" width="101" height="84" alt=""></td>
<td>
<img src="images/phones_light.jpg" width="101" height="84" alt=""></td>
<td>
<img src="images/cabling_light.jpg" width="100" height="84" alt=""></td>
<td>
<img src="images/security_light.jpg" width="100" height="84" alt=""></td>
<td>
<img src="images/mobile_dark.jpg" width="102" height="84" alt=""></td>
<td>
<img src="images/mobile_07.jpg" width="27" height="84" alt=""></td>
</tr>
<tr>
<td height="179" colspan="3">
<img src="images/mobile_08.jpg" width="431" height="179" alt=""></td>
<td colspan="4">
<img src="images/mobile_09.jpg" width="329" height="179" alt=""></td>
</tr>
<tr valign="top">
<td colspan="7"><table width="98%" border="0" align="center" cellpadding="2" cellspacing="0">
<tr>
<td><? include('/specs/siemens_ct66'); ?></td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>
correct?