Anonymous - 2011-03-31

Hello iam new to websites and have encountered the following error:

Parse error: syntax error, unexpected T_STRING in /home/london12/public_html/extraincomenow.co.uk/process.php on line 38

I am running the same form on 2 websites and they work fine, I copies teh exact code,made a simple change to the email address to be submitted to and now have this error everytime I submit the form. I have no idea how to deal with it,or where to error is.
Please help a bewildered new starter:

Here is the full code:
<?php
include("file:///C|/Users/Kate/Documents/roy molson site/global.inc.php");
$errors=0;
$error="The following errors occured while processing your form input.<ul>";
pt_register('POST','FullName');
pt_register('POST','YourEmailAddress');
pt_register('POST','LandlineNumber');
pt_register('POST','MobileNumber');
pt_register('POST','Whatisthebesttimetocontactyou');
pt_register('POST','Youraddressincludingpostcode');
pt_register('POST','Pleaseconfirmthatyouareover21');
pt_register('POST','Finallypleasetelluswhereyousawouradvert');
if($FullName=="" || $YourEmailAddress=="" ){
$errors=1;
$error.="<li>You did not enter one or more of the required fields. Please go back and try again.";
}
if(!eregi("^+(+)*" ."@"."(+(+)*)+"."\\.{2,}"."$",$YourEmailAddress)){
$error.="<li>Invalid email address entered";
$errors=1;
}
if($errors==1) echo $error;
else{
$where_form_is="http".($HTTP_SERVER_VARS=="on"?"s":"")."://".$SERVER_NAME.strrev(strstr(strrev($PHP_SELF),"/"));
$message="Full Name: ".$FullName."\n\n\n
Your Email Address: ".$YourEmailAddress."
Landline Number: ".$LandlineNumber."
Mobile Number: ".$MobileNumber."
What is the best time to contact you: ".$Whatisthebesttimetocontactyou."
Your address including postcode: ".$Youraddressincludingpostcode."
Please confirm that you are over 21: ".$Pleaseconfirmthatyouareover21."
Finally please tell us where you saw our advert: ".$Finallypleasetelluswhereyousawouradvert."
";
$message = stripslashes($message);
$message = stripslashes($message);
mail("kateatwork@btinternet.com","Form from your website",$message,"From: phpFormGenerator");
$make=fopen("admin/data.dat","a");
$to_put="";
$to_put .= $FullName."|".$YourEmailAddress."|".$LandlineNumber."|".$MobileNumber."|".$Whatisthebesttimetocontactyou."|".$Youraddressincludingpostcode."|"Pleaseconfirmthatyouareover21."|".$Finallypleasetelluswhereyousawouradvert."
";
fwrite($make,$to_put);

header("Refresh: 0;url=http://www.extraincomenow.co.uk/thanks.html");
?><?php
}
?>