I am using a php script to email my form results. I would like the form results to show up as bulleted text or html..I have attached the php script. Can any one tell how do this???? I am very new. All help will be appreciated.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<TITLE>thankyou</TITLE>
<META name="GENERATOR" content="Created by BlueVoda">
</HEAD>
<BODY bgcolor="#FFFFFF" text="#000000" <script language="php">
$email = $HTTP_POST_VARS[email];
$mailto = "masterbuilder@computerskinny.com;
$mailsubj = "Thank you for your order";
$mailhead = "From: masterbuilder@computerskinny.com";
reset ($HTTP_POST_VARS);
$mailbody = "Here are the components and software you need for your new computer. Remember, these items were automatically chosen according to the answers you submitted on the checklist. Items listed in ***ALL CAPS*** and bracketed in asterics as shown, are the items you need to read off to your computer manufacturer when placing your order. We suggest you highlight them prior to calling to place your order so you do not miss anything. Enjoy your new computer!!!:\n";
while (list ($key, $val) = each ($HTTP_POST_VARS)) { $mailbody .= "$key : $val\n"; }
if (!eregi("\n",$HTTP_POST_VARS[email])) { mail($mailto, $mailsubj, $mailbody, $mailhead); }
</script> >
<IMG src="m_198.gif" alt="" align="top" border="0" width="700" height="600" style="position:absolute;left:1px;top:0px;width:70 0px;height:600px;z-index:0">
<DIV style="position:absolute;left:199px;top:175px;widt h:529px;height:96px;z-index:1" align="left">
<FONT style="font-size:13px" color="#000000" face="Arial">Thank you for your interest in computerskinny.com<BR>
<BR>
Your order has been received and we have sent you an email with the specific information you need to give your computer manufacturer.<BR>
<BR>
We recommend you print the email immediately and put it in a safe place.</FONT>
</DIV>
</BODY>
</HTML>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<TITLE>thankyou</TITLE>
<META name="GENERATOR" content="Created by BlueVoda">
</HEAD>
<BODY bgcolor="#FFFFFF" text="#000000" <script language="php">
$email = $HTTP_POST_VARS[email];
$mailto = "masterbuilder@computerskinny.com;
$mailsubj = "Thank you for your order";
$mailhead = "From: masterbuilder@computerskinny.com";
reset ($HTTP_POST_VARS);
$mailbody = "Here are the components and software you need for your new computer. Remember, these items were automatically chosen according to the answers you submitted on the checklist. Items listed in ***ALL CAPS*** and bracketed in asterics as shown, are the items you need to read off to your computer manufacturer when placing your order. We suggest you highlight them prior to calling to place your order so you do not miss anything. Enjoy your new computer!!!:\n";
while (list ($key, $val) = each ($HTTP_POST_VARS)) { $mailbody .= "$key : $val\n"; }
if (!eregi("\n",$HTTP_POST_VARS[email])) { mail($mailto, $mailsubj, $mailbody, $mailhead); }
</script> >
<IMG src="m_198.gif" alt="" align="top" border="0" width="700" height="600" style="position:absolute;left:1px;top:0px;width:70 0px;height:600px;z-index:0">
<DIV style="position:absolute;left:199px;top:175px;widt h:529px;height:96px;z-index:1" align="left">
<FONT style="font-size:13px" color="#000000" face="Arial">Thank you for your interest in computerskinny.com<BR>
<BR>
Your order has been received and we have sent you an email with the specific information you need to give your computer manufacturer.<BR>
<BR>
We recommend you print the email immediately and put it in a safe place.</FONT>
</DIV>
</BODY>
</HTML>
Comment