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 2 and I'm not sure why.... my code is.
$send = $_POST['email1'];
$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?
How can I set $to of mailer class as a variable
Moderator: General Moderators
- turbolemon
- Forum Commoner
- Posts: 70
- Joined: Tue Jul 14, 2009 6:45 am
- Location: Preston, UK
Re: How can I set $to of mailer class as a variable
Is that the code listing of class_vcard.php?
Re: How can I set $to of mailer class as a variable
Apologies of the error is misleading....The file is named vcard_class, however I have adapted the code to send the details as an email. You have however, pointed me to the right answer, there is nothing wrong with my code, I just didn't close the previous argument, hence the error.
many thanks
many thanks