Ver Mensaje Individual
  #2 (permalink)  
Antiguo 25/04/2010, 08:37
Avatar de gjx2
gjx2
 
Fecha de Ingreso: agosto-2008
Ubicación: R.D
Mensajes: 1.153
Antigüedad: 15 años, 8 meses
Puntos: 139
Respuesta: mostrar table html en php ?

Por que no intenta de esta forma

Código PHP:
Ver original
  1. $html ='
  2. <table width="200" border="1">
  3.  <tr>
  4.    <td>&nbsp;</td>
  5.    <td>&nbsp;</td>
  6.    <td>&nbsp;</td>
  7.    <td>&nbsp;</td>
  8.    <td>&nbsp;</td>
  9.  </tr>
  10. </table>
  11. ';
  12.  
  13. echo $html;