<body>
<table width = "100%">
<tr>
<td width = "50%">
<?php include "navbar.html"; ?>
</td>
<td width = "50%">
<?php include "news.html"; ?>
</td>
</tr>
</table>
</body>
dezzo wrote:
It's so simple yet I can't do it in PHP. Please help!
All I want to do is the generate 2 pieces of html on one page (but I don't want to do it like frames) split down the middle vertically.
the first HTML page is called NAVBAR.html, and the other is NEWS.html
how do you do that with PHP?
thanks!
dezzo