very newbie question
Posted: Fri Jun 28, 2002 10:03 am
this is the php script:
<?
$mailTo="whomever@cudenver.edu";
$mailSubject="Form Reply from $name";
$mailBody="Name of Individual: $name \n";
$mailBody .="Email address:$email \n";
$mailBody .="Comments:$comments \n";
$mailHeaders="From: $email";
//send mail
mail($mailTo, $mailSubject, $mailBody, $mailHeaders);
print("<html>\n");
print("<head><title>response form</title></head>\n");
print("<body>\n");
print("<h2><i>Thank you for your input!</i></h2>\n");
print("</body></html>\n");
?>
the part that I want to edit is this one:
print("<html>\n");
print("<head><title>response form</title></head>\n");
print("<body>\n");
print("<h2><i>Thank you for your input!</i></h2>\n");
print("</body></html>\n");
?>
can someone help me put this html inside ??
<link rel="stylesheet" href="../style-wd-.css" type="text/css">
<table cellspacing="0" cellpadding="0" border="0" align="center">
<tr>
<td width="200" height="108" valign="top"></td>
</tr>
<tr>
<td width="200" height="115" valign="top">
<p class="Header2">Thank you for your feedback</p>
<p>We'll contact you very soon!</p>
<p><A HREF="../contactus.html"> Back</A></p>
</td>
</tr>
<tr>
<td width="200" height="1" valign="top"><img width="200" height="1" src="../transparent.gif"></td>
</tr>
</table>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p align="center"><span class="bodytext">All Content © Algerweb.com</span></p>
</body>
</html>
Thanks so much !!
numoon56