Announcement

Collapse
No announcement yet.

Form Help

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Form Help

    The information that a customer would input into myform, is not being transferred to me in the email I get. There are no values from the text being entered. I've tested it aboout 5 times with no luck. What do i need to do in order to get the entered text to be in the email I get? Thanks for help.

    Form url: www.gold-grillz.com/order1.html

  • #2
    Re: Form Help

    here's the coding i have for the form. the only thing missing is the paypal coding, which I edited internally.
    <HTML>
    <HEAD>
    <TITLE>We have successfully processed your order.</TITLE>
    </HEAD>
    <BODY>
    <H2>Thanks for your order. !</H2>
    To continue with the processing of your order, please click on the PAYPAL
    button below to make your payment for your customized grill.
    <?PHP
    $email = $HTTP_POST_VARS[email];
    $mailto = "order@gold-grillz.com";
    $mailsubj = "Order";
    $mailhead = "From: $email\n";
    reset ($HTTP_POST_VARS);
    $mailbody = "Values submitted from web site form:\n";
    while (list ($key, $val) = each ($HTTP_POST_VARS))
    {
    $mailbody .= "$key : $val\n";
    }
    mail($mailto, $mailsubj, $mailbody, $mailhead);
    ?>
    </BODY>
    </HTML>

    Comment


    • #3
      Re: Form Help

      All your text fields are named the same : T1 for the test fields, and S1 for the text area fields, which are the default names given by BV. Name them correctly:Name, email, Details, etc. Pay special attention to the email field. It must be named "email" with lowercase e.
      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!

      Comment


      • #4
        Re: Form Help

        where do i insert that information? could you post an example?

        Comment


        • #5
          Re: Form Help

          Originally posted by cheryl20
          where do i insert that information? could you post an example?
          Directly in the form in BV. Double click on every field, a popup wil open and in the name field add the specific name for every field
          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!

          Comment


          • #6
            Re: Form Help

            Ok, I did it. I'll run a test tomorrow. Hopefully it works now. Thanks for your help

            Comment

            Working...
            X