Código PHP:
<div id="resultados_tabla">
<table width="499" border="0">
<?php
while ($row = mysql_fetch_array($res))
{
$id_propuesta = $row['id_propuesta'];
$titulo = $row['titulo'];
$fecha = $row['fecha'];
$descripcion = $row['descripcion'];
$destino = $row['destino'];
$precio = $row['precio'];
$foto = $row ['foto'];
$mapa = $row ['mapa'];
?>
<tr>
<td width="99" rowspan="3" valign="top"><?php if (empty($foto)) { ?><img src="fotos/generico.jpg" width="148" height="111" border="2" /> <?php } else { ?><img src="fotos/<?php echo "$foto";?>" width="148" height="111" border="2" /><?php } ?></td>
<td width="390" class="titulo_resultados"><?php echo "$titulo"; ?></td>
</tr>
<tr>
<td class="descripcion_resultados"><?php echo "$descripcion"; ?></td>
</tr>
<tr>
<td valign="top"><div align="right" class="paquete_resultados"><?php echo "$precio"; ?></div></td>
</tr>
<?php
}
?>
<tr>
<td></td>
</tr>
<tr>
<td></td>
</tr>
</table>
<br />
</div>