Results 1 to 3 of 3

Thread: Parse Error...

  1. #1

    Parse Error...

    I'm getting a Parse Error on line 10. Any ideas why? Its the same general form I use for all my online forms but this one is giving me a problem...

    Code:
    <?php  
    
    		$email = "Course:\t$course\nName:\t$user_name\nEmail:\t$user_email\nTelephone:\t$user_tel\nAgency:\t$user_agency\nTextbook_Required:\t$user_textbook\nPayment_Method:\t$user_payment\n\n"; 
    		$to = "ryan.price@rogers.com"; 
    		$subject = "Course Registration"; 
    		$mailheaders = "From: $user_email <> \n"; 
    		$mailheaders .= "Reply-To: $user_email\n\n"; 
    		mail($to, $subject, $email, $mailheaders); 
    		include("registration_thanks.php"); 
    }
    
    ?>

  2. #2
    } <----

  3. #3

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •