You could use heredocs:
<?php
if($condition){
<<<EOT
<table class="main">
<tr>
<td>$variable</td>
</tr>
</table>
EOT;
}
Or just reg. HTML:
<?php
if($condition){
?>
<table class="main">
<tr>
<td><?php echo $var ?></td>
</tr>
</table>
<?php
}else{
?>
No table!
<?php
}
?>