Results 1 to 4 of 4

Thread: Problems with my Thank You page
      
   

  1. #1
    Stream Me is offline Private First Class
    Join Date
    May 2007
    Posts
    6

    Default Problems with my Thank You page

    Hello, so i followed the tutorials and have published my pages with forms however my thank you page comes up with the following message when i subscribe.

    Parse error: syntax error, unexpected '"' in /home/mtonisjf/public_html/action.php on line 10

    My webpage is:

    www.stream-memobile.com

    Heres the problem page:

    http://www.stream-memobile.com/action.php

    I have contact forms on three pages so i really need my thank you page to work i put this script in to the html code box is it correct:

    <?PHP
    $mailto = "nicholasmdobbs********.com";
    $email = "contact form submission;
    if ($email == "") {
    $email = $mailto;
    }
    $mailsubj = "Type your mail subject here";
    $mailhead = "From: $email\n";
    reset ($HTTP_POST_VARS);
    $mailbody = "Values submitted from web site form :\n";
    while (list ($key, $val) = each ($HTTP_POST_VARS))
    {
    if ($key!="submit")
    {
    $mailbody .= "$key : $val\n";
    }
    }
    mail($mailto, $mailsubj, $mailbody, $mailhead);
    ?>

    Thanks for your help in advance guys, i have to have this finished by tommorow for my university product so pressure is on.

    Thanks, Nick

  2. #2
    navaldesign's Avatar
    navaldesign is offline General & Forum Moderator
    Join Date
    Oct 2005
    Location
    Italy
    Posts
    12,115

    Default Re: Problems with my Thank You page

    Third line should be:

    $email = "contact form submission";

    You have missed the " at the end.
    Navaldesign
    Logger Lite: Low Cost, Customizable, multifeatured Login script
    Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
    DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
    Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!


  3. #3
    Stream Me is offline Private First Class
    Join Date
    May 2007
    Posts
    6

    Default Re: Problems with my Thank You page

    thanks mate your a life saver

  4. #4
    navaldesign's Avatar
    navaldesign is offline General & Forum Moderator
    Join Date
    Oct 2005
    Location
    Italy
    Posts
    12,115

    Default Re: Problems with my Thank You page

    You are very welcome!
    Navaldesign
    Logger Lite: Low Cost, Customizable, multifeatured Login script
    Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
    DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
    Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!


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