One more thing
how can i change the text color and font face on the print out that the user gets, i tries putting <FONT SIZE=1 COLOR="#4D7752"> </font>in the echo bit that you suggest to change the color of the background but it only changed the first line to this color
the code now looks like :
<?
echo '<html><head><title>Thanks For Filing Out Our Form</title></head><body bgcolor="DCDBD9"><FONT SIZE=1 COLOR="#4D7752">';
PRINT "<center>"; PRINT "Greetings $titlequote $forenamequote $surnamequote, thank you for filling out our quote builder";
PRINT "</center><BR><BR>";
PRINT "<center>In the form, you built the following site: \n A $style site with $flashintro, $splash, $gamesandanimation, $php, $sql. You also required: $other and also specified: $commentsquote\n";
PRINT "$status. Thank you for your quote."; PRINT " We will be in touch shortly with a reply to your quote";
PRINT " in an email to $emailquote.";
PRINT " If you have any more requests, feel free to e-mail us.";
PRINT "</center>";
echo '</FONT></body></html>';
$myname = "$titlequote $forenamequote $surnamequote";
$myemail = "$emailquote";
$contactname = "Tom Whitson";
$contactemail = "tomwhitson@hotmail.com";
$message = "$titlequote $forenamequote $surnamequote from $companynamequote built the following quote\n\nThey needed A $style site with $flashintro, $splash, $gamesandanimation, $php, $sql. You also required: $other and also specified: $commentsquote. \nThis quote was sent by $emailquote.\n\n\nThis quote was sent from the html quote form";
$subject = "Quote";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: ".$myname." <".$emailquote.">\r\n";
$headers .= "Reply-To: ".$myname." <$myemail.>\r\n";
$headers .= "X-Priority: 1\r\n";
$headers .= "X-MSMail-Priority: High\r\n";
$headers .= "X-Mailer: Just My Server";
mail($contactemail, $subject, $message, $headers);
?>
ok no worries i worked it out
thanks anyway