Okay, so here's a snippet of my script:
//Console Array
$consoles_array = array("0" => "Standard Console",
"0" => "STD Console w/ Cooler...$",
"275" => "Optional Console.....................................................$",
"2350" => "Optional Console w/ Head........................................$",
"4980" => "Elevated Helm...........................................................$",
"7200" => "Elevated Helm Console w/ Head...............................$",
"2600" => "Electric Head............................................................$",);
$console_value = $_POST['Console'];
$Con = $consoles_array[$console_value];
//Call Console Output
echo "<p>Console Option: " . $consoles_array[$console_value];
echo "<b>".$_POST["Console"]."</b>.";
//Start Building Mail String
$msg .= "<p><strong>Console Option: </strong>$Con ".$_POST["Console"]."</p>";
//Set up the mail
//set up the mail
$recipient = "test@test.com";
$subject = "test";
$mailheaders .= "MIME-Version: 1.0\r\n";
$mailheaders .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
$mailheaders .= "From: ".$_POST["Your_Email"]." \n";
$mailheaders .= "Reply-To: ".$_POST["No Reply"];
//send the mail
mail($recipient, $subject, $msg, $mailheaders);
So the script is working ok (I'm newbie so I know there's probably betters ways to write it) what's puzzling me is that every so often in the actual email this script sends it randomly inserts "!". Example:
Electric Head.........!..................................................$
or
Electric Hea!d............................................................$
Anyone have any ideas?