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>";
?>