prueba esto a ver si te funciona
Código PHP:
<? $consulta2= "select * from foro order by id desc";
$resultado2= mysql_query($consulta2);
$num= mysql_num_rows($resultado2);
for ($i=0;$i<$num;$i++)
{
$row= mysql_fetch_array($resultado2);
$url1= ($row['url']);
$url_act= @fopen($url1,'r');
$imagen2= ($row['imagen']);
$_SESSION['imagen2'] = $imagen2;
$ruta= $_SESSION['imagen2'];
$width= 80;
$break= "<br />\n";
$cut= true;
$comentario= ($row['comentario']);
//aqui agregue un if
if($row['username']== $_SESSION['username']) {
echo "<td>".redimensionar($ruta,$ancho,$alto)."<fon t face=arial size=1 color=#999999> ".($row['fecha'])." | ".($row['hora'])." | </font><font face=arial size=2 color=#0080C0><strong> ". ($row['username']). "</strong> | dijo:</font> <font face=arial size=2 color=#999999>".wordwrap($comentario,$width,$break )." <a href=".($row['url'])." target=_blank class=URL>".($row['url'])."</a><a href='eliminar.php?id=".$row['id']."'>eliminar</a></td></tr></table>";
echo "<font face=arial size=2 color=#C6ECFF>"
}
else
{
echo "<td>".redimensionar($ruta,$ancho,$alto)."<fon t face=arial size=1 color=#999999> ".($row['fecha'])." | ".($row['hora'])." | </font><font face=arial size=2 color=#0080C0><strong> ". ($row['username']). "</strong> | dijo:</font> <font face=arial size=2 color=#999999>".wordwrap($comentario,$width,$break )." <a href=".($row['url'])." target=_blank class=URL>".($row['url'])."</a></td></tr></table>";
echo "<font face=arial size=2 color=#C6ECFF>"
}
?>
edito: me habia equivocado al escribir el codigo alli esta corregido