how can i echo this code. when i echo it it prints out the html tags and <? php code ?> i want to echo the html code and interpret the php as php.
echo "<h2>Add Contact</h2>
<form name=\"form1\" action=\"<?=$_SERVER[\'PHP_SELF\'];?>?mode=added\" method=\"post\">
<table class=\"tableStyleClassTwo\">
<tr><td>Name:</td><td><div align=\"left\">
<input type=\"text\" name=\"name\" />
</div></td></tr>
<tr><td>Phone:</td><td><div align=\"left\">
<input type=\"text\" name=\"phone\" />
</div></td></tr>
<tr><td>Email:</td><td><div align=\"left\">
<input type=\"text\" name=\"email\" />
</div></td></tr>
<tr><td colspan=\"2\" align=\"center\"><a href=\"javascript:history.go(-1);\">Back</a> | <input name=\"Submit\" type=\"submit\" id= \"Submit\" value=\"Add New Contact\" <?php if($disable ==1){?>disabled<?php } ?>/></td></tr>
<input type=\"hidden\" name=\"mode\" value=\"added\">
</table>
</form>";