Ver Mensaje Individual
  #12 (permalink)  
Antiguo 15/04/2009, 07:27
Avatar de farra
farra
 
Fecha de Ingreso: marzo-2008
Ubicación: Aqui estoy
Mensajes: 574
Antigüedad: 16 años, 1 mes
Puntos: 20
Respuesta: pasar de html a Php tablas

de cualquiera de estas formas podes hacerlo:
Código PHP:
<?php 
echo "<tr>
            <th><br>
              <table width='202' border='0' cellspacing='0' cellpadding='0'>
                <tr>
                  <td height='148'>Hola como estas</td>
                  <td>Bien y vos?</td>
                </tr>
            </table>"
;
?> 
<?php 
echo '<tr>
            <th><br>
              <table width="202" border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td height="148">Hola como estas</td>
                  <td>Bien y vos?</td>
                </tr>
            </table>'
;
?> 
<?php 
echo "<tr>
            <th><br>
              <table width=\"202\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
                <tr>
                  <td height=\"148\">Hola como estas</td>
                  <td>Bien y vos?</td>
                </tr>
            </table>"
;
?>
__________________
Firma:
Es mas dificil para el mono entender que el hombre desciende de el....

PD: Siempre doy karma al que me da una buena respuesta... ;0)