Ver Mensaje Individual
  #1 (permalink)  
Antiguo 11/10/2011, 03:37
Ghosty
 
Fecha de Ingreso: junio-2008
Mensajes: 292
Antigüedad: 15 años, 11 meses
Puntos: 4
Repetir region dentreo de un echo

Hola amigos. Intento repetri una region dentro e un echo pero no me funciona. Necesito saber como meter la etiqueta <?php ....?> dentro del echo

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)); ?>'
;
                        }
                    
?>
gracias