Hi all,
i have used this include function , but i am not getting proper output,
the included files are one below the other i want it to be side by side,
this is code i have written whats wrong with this code,?
<html>
<head>
<style type="text/css">
table.one
{
table-layout: automatic
}
</style>
</head>
<body bgcolor="#DBFCBF">
<table class="one" width="100%" border="1" height="0" cellspacing="0" cellpadding="0">
<tr >
<td colspan="2"><?php include "autoaltoheader.html";?></td>
</tr>
<tr>
<td >
<?php include "autoaltosignin1.html";?>
</td>
</tr>
<tr>
<td>
<?php include "autoaltosignin1.html";?>
</td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
</body>
</html>