Richie , -
That works perfect... if I put it my request out form as shown below, but If I moved it to where I want it after LEVEL , It does not work. any idea's ?? It seems to be something with the message line in the code.
Sorry , I am really new at this any help would be great.
$todayis = date("l, F j, Y, g:i a") ;
$attn = $attn . "(" . $ccopy . ")" ;
$subject = $attn;
$rink = $_POST['rink'];
if(is_array($rink)) {
foreach ($rink as $value)
{
echo $value.'<br />';
}
}
$message = " $todayis [EST] \n
Attention: $attn
From: $nameis
Email: $email \n
Confirm Email: $email2
Phone: $phone
Cellphone: $cellphone
DOB: $dob
Level: $level \n
$req \n
Comments: $Comments \n
Additional Info : IP = $ip \n
Browser = $httpagent \n
";
$from = "From: $email\r\n";
if ($myemail != "")
mail($myemail, $subject, $message, $from);
if (($ccopy == "ccyes") && ($email != ""))
mail($email, $subject, $message, $from);
$screenout = str_replace("\n", "<br/>", $message);
?>
<p align="center">
<?php echo $screenout ?>
</p>