Ver Mensaje Individual
  #2 (permalink)  
Antiguo 05/09/2007, 10:10
Avatar de pzin
pzin
Moderata 😈
 
Fecha de Ingreso: julio-2002
Ubicación: Islas Canarias
Mensajes: 10.488
Antigüedad: 21 años, 9 meses
Puntos: 2114
Re: php que esta dentro de html que esta dentro de php (no sabia que otro titulo pone

Así debiera de funcionar:
Código PHP:
<?php
if($row_modificar_doc['tramitado'] == 1)
echo 
"<table width='100%' border='1' cellspacing='0' cellpadding='5'>
<tr>
<td> // bla bla bla toda la tabla
<td colspan='2'>
<strong>Responsables:</strong><br>
$row_modificar_doc[nombre]<br />"
;
do{ print 
"<input type='checkbox' name='responsable[]' value='$row_mostrar_responsable[nombre]/>
$row_mostrar_responsable[nombre]<br>"
;}
while (
$row_mostrar_responsable mysql_fetch_assoc($mostrar_responsable));"
</td>
</tr>
</table>"
;
?>