Código PHP:
$con = mysql_query($query, $db_conn);
$num = mysql_num_rows($con);
echo '<table border="0">';
for($i=0;$i<$num;$i++)
{
$datos = mysql_fetch_array($con);
?>
<tr>
<td width="130" height="101" valign="top">
<img src="<? echo $datos['imagen']; ?>" width="130" height="97" border="0"></td>
<td width="334" valign="top">
<? echo $datos['titulo']; ?>
</td>
</tr>
<?
}
echo '</table>';