+ Reply to Thread
Results 1 to 4 of 4

Thread: Form is frustrating me
      
   

  1. #1
    cmwatts67's Avatar
    cmwatts67 is offline Sergeant Major
    Join Date
    Aug 2005
    Location
    Norwich United Kingdom
    Posts
    96

    Default Form is frustrating me

    Could some one tell me what is wrong with my contact us form ?

    Parse error: syntax error, unexpected '@' in /home2/chrisvw/public_html/contact_us.php on line 3



    <?PHP
    $email = $HTTP_POST_VARS[email];
    $mailto = softwareeditorial@googlemail.com;
    $mailsubj = "Software Enquiry";
    $mailhead = "From: $email\n";
    reset ($HTTP_POST_VARS);
    $mailbody = "Values submitted from web site form: or whatever else you want \n";
    while (list ($key, $val) = each ($HTTP_POST_VARS))
    {
    $mailbody .= "$key : $val\n";
    }
    mail($mailto, $mailsubj, $mailbody, $mailhead);
    header("Location:http://www.softwareeditorial.com/contact_us.php");

  2. #2
    cmwatts67's Avatar
    cmwatts67 is offline Sergeant Major
    Join Date
    Aug 2005
    Location
    Norwich United Kingdom
    Posts
    96

    Default Re: Form is frustrating me

    Sorted it out,

    Im feeling a bit tired my wife has just has a baby girl.

  3. #3
    Andy128's Avatar
    Andy128 is offline Major General
    Join Date
    Dec 2005
    Location
    Michigan
    Posts
    2,322

    Default Re: Form is frustrating me

    Problem is you deleted the " ".

    Try- "softwareeditorial@googlemail.com";

    Cheers,

    Andy
    PHP- is a blast!

  4. #4
    Andy128's Avatar
    Andy128 is offline Major General
    Join Date
    Dec 2005
    Location
    Michigan
    Posts
    2,322

    Default Re: Form is frustrating me

    Well congrats!!

    Didn't see that you had sorted it out yourself. Glad all is well.

    Get some sleep.

    Andy
    PHP- is a blast!

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49