Hey,
I've had a problem with the 'Mailer' PHP file on my site for a while. Every time I try to contact, um, myself with it, I get the unexpected T_VARIABLE error. Here is the PHP of the relevant lines, 47 to 52. The error is on Line 49:
if(isset($_POST['submit'])) {
$to = "me@myemail.net";
$subject = "Ice Spark Interactive - " $_POST['email'];
$name_field = $_POST['name'];
$email_field = $_POST['email'];
$message = $_POST['message'];
I can't see any problems with it. The curly brace is closed later in the script. If you need anything else, please tell me.