Os pongo lo que intento hacer
Código PHP:
<?php
$id_tema2=$row_mismaquetas['id_make'];
$titulo_tema=$row_temas['titulo'];
$link_tema = $row_temas['link'];
$votos_temas = $row_temas['votos'];
if($row_mismaquetas['id_make']==0){
echo 'No has sudido ningun tema todavia!';
}else{
echo '<table width="95%" border="0" class="tabla_votados">
<tr>
<td width="48%" class="titulo_home">Título</td>
<td width="28%" class="titulo_home">Reproductor</td>
<td width="13%" align="center" class="titulo_home">Votos</td>
<td width="11%" align="right" class="titulo_home">Borar</td>
</tr>
</table>
<?php do { ?>
....tabla a repetir
<?php } while ($row_temas = mysql_fetch_assoc($temas)); ?>';
}
?>