Header location issue. small piece of code can anyone take a look

My Error Output is this:
Warning: Cannot modify header information - headers already sent by (output started at city-search.php:1) in city-search.php on line 65

What I’m I missing in the code, I can’t seem to get these. It works excellent in Localhost, but in production. Error above.


<?php
// MG CREATED THIS SIMPLE REGISTRATION PHP FOR THAT GOES TO ONE SPECIFIC USER.
// WILL TEST FORM REGSITRATION NG 07-2011
//If the form is submitted
if(isset($_POST['submit'])) {

    //Check to make sure that the name field is not empty
    if(trim($_POST['name']) == '') {
        $hasError = true;
    } else {
        $name = trim($_POST['name']);
    }

    //Check to make sure that the subject field is not empty
    if(trim($_POST['subject']) == '') {
        $hasError = true;
    } else {
        $subject = trim($_POST['subject']);
    }

    //Check to make sure sure that a valid email address is submitted
    if(trim($_POST['email']) == '')  {
        $hasError = true;
    } else if (!eregi("^[A-Z0-9._%-]+@[A-Z0-9._%-]+\\.[A-Z]{2,4}$", trim($_POST['email']))) {
        $hasError = true;
    } else {
        $email = trim($_POST['email']);
    }
    //Check to make sure comments were entered
    if(trim($_POST['message']) == '') {
        //$hasError = true;
        $comments == 'Have No Friends';
    } else {
        if(function_exists('stripslashes')) {
            $comments = stripslashes(trim($_POST['message']));
        } else {
            $comments = trim($_POST['message']);
        }
    }

    //If there is no error, send the email
    if(!isset($hasError)) { 
        //$emailTo = 'regina@shushmedeals.com';
        //$emailTo = 'reginabyrd32@yahoo.com';
        $emailTo = 'mp3@danjaproduction.com';         
        //$emailBcc = 'ganja99@netzero.net';
        //$emailBcc = 'info@danjaproduction.com';  
        //$emailBcc = 'ganja99@netzero.net';    
        //Put your own email address here
        $body = "Location: $name \
\
Email: $email \
\
ShushMeDeals Sign-up Info:\
 $comments";
    
        // To send HTML mail, the Content-type header must be set
    
        $headers  = 'From: ShushMeDeals.com City Location  sign-up - '.$name.'' . "\\r\
" . 'Reply-To: ' . $email . "\\r\
" .'Bcc: print@extremeatlanta.com'; 
        //$headers .= 'Cc: birthdayarchive@example.com' . "\\r\
";
        //$headers .= 'Bcc: info@danjaproduction.com' . "\\r\
";

        mail($emailTo, $subject, $body, $headers);
        $emailSent = true;
        if($emailSent = true) {
            setcookie("location", $name);

            //echo '<script type="text/javascript">
           //       window.location = "index.php?option=com_enmasse&controller=deal&task=today&locationName='.$name.'"
           //      </script>';
        }
    }
}
?>   


(output started at city-search.php:1)

This says there’s a problem on your first line. Is there a space character before the < in <?php ?

If it doesn’t look like there is a space before the < then there might be a byte order mark there causing the problem.

I can’t locate what makes this header modfiy error show up.
But I am somewhat stoked on such simeple issues.
I can’t seem to figure out what’s the issue.

what is at line 65?

remove the following code that you have commented out near the end:


//echo '<script type="text/javascript">
 //       window.location = "index.php?option=com_enmasse&controller=deal&task=today&locationName='.$name.'"
 //      </script>';

It has something to do with the </script> ending, it is taking the ’ literally