<table width="100%" style="borer: 1px solid #000000">
<tr>
<td width="50%">left column</td>
<td width="50%">right column</td>
</tr>
</table>
<table width="100%" style="borer: 1px solid #000000">
<tr>
<td width="50%">
<?php
$static = true; #this is the important part
include 'news/index.php';
?>
</td>
<td width="50%">
<?php
include 'news/index.php';
?>
</td>
</tr>
</table>
<?php
$newsorder = 'ASC'; #this can be either ASC or DESC
include 'news/index.php';
?>
<?php
$newsorder = 'DESC';
$archives = true;
include 'news/index.php';
?>