asi tengo el codigo ahorita
Código PHP:
<?
$query = mysql_query("SELECT * from foros where id_raiz='0' && id_foro='$id_foro' order by id desc");
while($row=mysql_fetch_array($query))
{
$id = $row[id];
$respuestas = mysql_query("SELECT * from foros where id_raiz='$id'");
$resp = mysql_num_rows($respuestas);
$ultima = $row["ult_resp"];
$date = $row["fecha"];
$link = "mensajes.php?id=$id";
?>
<tr><td><? if($resp>='15'){ ?><img src="imagenes/mas25.gif"> <? } else {?>
<img src="imagenes/menos15.gif"> <? } ?></td>
<td><a href="<? echo "$link"; ?>"><? echo "$row[asunto]"; ?></a></td>
<td><center> <? echo "$row[autor]"; ?> </center></td>
<td><center> <? echo "$resp"; ?> </center></td>
<td> </tr></tr>
<? } ?>