I'm experiencing alot of issues trying to create the $to field as a variable, PHP is reporting Parse error: syntax error, unexpected T_VARIABLE, expecting T_FUNCTION in /home/shhdcouk/public_html/PHP/class_vcard.php on line 172 and I'm not sure why.... my code is.
$send = $_POST;
$to = $send;
$subject = "Registered for xxxx";
$body="Thank you for registering your details xxxx\n\n";
$headers= "From: xxxx Web Site\r\n";
if(mail($to, $subject, $body, $headers)) {
include ("OK.htm");
}
else {
include("Error.htm");
}
Can anyone help a frustrated newcomer?