Using HEREDOC
http://www.overclock.net/t/1190018/a-guide-to-phps-heredoc-notation-what-is-it-and-why-use-it
<?php
/*
NOTE: EOD must end at the left , not a single space can be before it
*/
echo <<< EOD
<form name="contact" method="post" action="contact.php" >
<table>
<tr>
<td>Recipient Email: </td>
<td><input name="to" type="text" size="66" value="{$_POST['to']}" /></td>
</tr>
<tr>
<td>Your Email: </td>
<td><input name="from" type="text" size="66" value="{$_POST[from]}" /></td>
</tr>
<tr>
<td>Your Name: </td>
<td><input name="name" type="text" size="66" value="{$_POST[name]}" /></td>
</tr>
<tr>
<td>Message: </td>
<td><textarea name="message" rows="15" cols="66" style="resize:none" maxlength="1000"></textarea></td>
</tr>
<tr>
<td></td>
<td><input name="send" type="submit" value="Send" style="width: 180px"/></td>
</tr>
</table>
</form>
EOD;