Should be easy, but it ain't working for me:
if(!empty($_POST['name']) && !empty($_POST['email']) && !empty($_POST['comments'])){
$name=$_POST['name'];
$address=$_POST['email'];
$comments=$_POST['comments'];
print ("<div align=\"center\"><table width=\"100%\" height=\"30%\" cellpadding=\"0\" cellspacing=\"0\">
<tr>
<td><h3>
Name: $name<br>
Email: $address<br>
Comments: $comments<br></h3>
</td>
</tr>
</table></div>");
The output isn't centered. Any ideas?
-S