Results 1 to 8 of 8

Thread: can anyone help me and tell me why my form is not working
      
   

  1. #1
    night60000 is offline Master Sergeant
    Join Date
    Mar 2007
    Location
    New York USA
    Posts
    68

    Question can anyone help me and tell me why my form is not working

    hi i just did a form with BV and i did everything right i did it like 5 times but im not geting the emails can anyone tell me what im doing wrong
    the site http://www.easy123eloan.com/loan.html
    and i have the action ( thank u page ) to but i dont know its going sending the info :( can anyone help please
    Danny B.

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

    Default Re: can anyone help me and tell me why my form is not working

    I have not been able to trace an "email" field in your form, for the sender's email address. In most cases, absense of the sender's email will block the mail from being sent. Try it.

    I also see that you have many checkboxes named with the same name. Please note that if those checkboxes are used for options (f.e. married / separated) they should be replaced by radio buttons, to make the option unique. Also, if more than one checkboxes have the same name, and the visitor by mistake checks more than one, you will only receive one value, and that could be wrong (because he has checked more than one).
    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
    night60000 is offline Master Sergeant
    Join Date
    Mar 2007
    Location
    New York USA
    Posts
    68

    Default Re: can anyone help me and tell me why my form is not working

    Hi where is the email field need to be is it in the action page ? becouse i see it there i did the same thing that i saw in the vidoe and it was working before but now i dont know its not even sedning it now

    and ill fix the checkbox with the radio thanks
    Danny B.

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

    Default Re: can anyone help me and tell me why my form is not working

    Youi must have an "email" field in your form. It is not only necessary for the script <(otherwise ISPs will block the mail) but also useful for you, to be able to contact your visitor.
    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!


  5. #5
    night60000 is offline Master Sergeant
    Join Date
    Mar 2007
    Location
    New York USA
    Posts
    68

    Default Re: can anyone help me and tell me why my form is not working

    where is that "email" need to be ? in the action page right tahts where i have it here is the copy how i have it
    <?PHP
    $email = $HTTP_POST_VARS[email];
    $mailto = "info@easy123eloan.com";
    $mailsubj = "Leads";
    $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);
    ?>



    and its in the insidebody tag is it the right place im cunfuse right now
    Danny B.

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

    Default Re: can anyone help me and tell me why my form is not working

    I repeat: you need a field called "email " in your FORM, not in your script
    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!


  7. #7
    night60000 is offline Master Sergeant
    Join Date
    Mar 2007
    Location
    New York USA
    Posts
    68

    Default Re: can anyone help me and tell me why my form is not working

    Hi i just find the prob i didnt even see that it was my mastake i put the scrept in action in the wrong place it was in the insidebody but it need to be ion the Beginning of Body everything is ok now just now i need to fix the reset button and im good :) thank u again for ur help Naval
    Danny B.

  8. #8
    aconstas1's Avatar
    aconstas1 is offline Lieutenant Colonel
    Join Date
    Mar 2007
    Posts
    584

    Default Re: can anyone help me and tell me why my form is not working

    so if you aren't sure what he means, you need a box in your form and you have to call it email. Not just text next to it that says email, but name it email in the properties of that little box. That email field is necessary for your script and for ISPs not to block your email.

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