Deberías hacer algo como esto:
Código PHP:
Ver original<?php
# Incluimos la configuracion
include('config.php');
//Esto me supongo que viene del config.php
$sql = "SELECT * FROM mensaje WHERE para='" . $_SESSION['s_username'] . "'";
?>
Menu: <a href="listar.php">Ver mensajes</a> | <a href="crear.php">Crear mensajes</a> | <a href="cerrar.php">Cerrar sesion</a><br /><br />
<table width="800" border="0" align="center" cellpadding="1" cellspacing="1">
<tr>
<td width="53" align="center" valign="top"><strong>ID</strong></td>
<td width="426" align="center" valign="top"><strong>Asunto</strong></td>
<td width="321" align="center" valign="top"><strong>De</strong></td>
<td width="321" align="center" valign="top"><strong>Fecha</strong></td>
</tr>
<?php
?>
<tr bgcolor="<?php if ($show['leido'] == "si") {
echo "#FFE8E8";
} else {
if ($i % 2 == 0) {
echo "#FFE7CE";
} else {
echo "#FFCAB0";
}
} ?>">
<td align="center" valign="top"><?php echo $show['ID'] ?></td>
<td align="center" valign="top"><a href="leer.php?id=<?php echo $show['ID'] ?>"><?php echo $show['asunto'] ?></a></td>
<td align="center" valign="top"><?php echo $show['de'] ?></td>
<td align="center" valign="top"><?php echo $show['fecha'] ?></td>
</tr>
<?php
}
?>
</table>