Forms not working properly

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

    • Jun 2010
    • 39

    Forms not working properly

    Hi guys,
    I have created forms in my website. Instead of making- data required it is still allowing submitting form blank. Could any one can suggest the solution.
    Thanks in advance
    Albi
  • WSBlue
    Brigadier General

    • Apr 2006
    • 1415

    #2
    Re: Forms not working properly

    Have you set Data Length?
    Check Data Required at least for Minimum.

    Comment

    • navaldesign
      General & Forum Moderator

      • Oct 2005
      • 12080

      #3
      Re: Forms not working properly

      Your form is named "Assessment form"

      Change it to "Assessment_form". No whitespaces are allowed.
      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

      • tabassum
        Private

        • May 2010
        • 2

        #4
        Re: Forms not working properly

        Hi Sir,
        I have created forms into my website. After submitting form this error message

        Warning: file_get_contents(./error.html) [function.file-get-contents]: failed to open stream: No such file or directory in /home/albiasin/public_html/emp-form.php on line 11
        Kindly any one of you expert people help me to solve this issue, please visit this link to understand the problem more easily thank you all. http://www.albiasint.com/emp-form.php

        Comment

        • navaldesign
          General & Forum Moderator

          • Oct 2005
          • 12080

          #5
          Re: Forms not working properly

          The error message means that some error is encountered in your form submission, and the processor tries to report it through the "error.html" page.

          Did you create and publish this page ?
          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

          • Albi009
            Sergeant

            • Jun 2010
            • 39

            #6
            Re: Forms not working properly

            Thanks guys for response. There is no white space in Forms. I named them
            assessment_form, contact_us
            For Text editbox it doesnot ask minimum length or maximum length. I put the constraint also- like for phone number- number constrain.
            Besides this i have ticked- error message, data required and disallow first choice.

            Comment

            • WSBlue
              Brigadier General

              • Apr 2006
              • 1415

              #7
              Re: Forms not working properly

              Originally posted by Albi009 View Post
              Thanks guys for response. There is no white space in Forms. I named them
              assessment_form, contact_us
              For Text editbox it doesnot ask minimum length or maximum length. I put the constraint also- like for phone number- number constrain.
              Besides this i have ticked- error message, data required and disallow first choice.
              Click Right at Edit box > Properties > Validate (Data Length for Minimum is there)

              Comment

              • Albi009
                Sergeant

                • Jun 2010
                • 39

                #8
                Re: Forms not working properly

                Originally posted by WSBlue View Post
                Click Right at Edit box > Properties > Validate (Data Length for Minimum is there)
                Thanks for prompt reply.I checked and filled. It says maximum length.I filled it but still not working properly.It is allowing users to submit form without filling it

                Comment

                • navaldesign
                  General & Forum Moderator

                  • Oct 2005
                  • 12080

                  #9
                  Re: Forms not working properly

                  @ Albi009:

                  your assessment form NAME contains white spaces. The following is taken from your page code:

                  <formname="Assessment form" As you see there IS a white space between "Assessment" and "form"

                  Your contact form instead has TWO whitespaces:

                  <formname="Contact us " one between "Contact" and "us" and one at the end of the name.
                  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

                  • WSBlue
                    Brigadier General

                    • Apr 2006
                    • 1415

                    #10
                    Re: Forms not working properly

                    Originally posted by Albi009 View Post
                    Thanks for prompt reply.I checked and filled. It says maximum length.I filled it but still not working properly.It is allowing users to submit form without filling it

                    Click Right at Edit box > Properties >
                    Under Validate Page (Data Length for Minimum is there)
                    of course, the form can be submitted if No Minimum required.

                    Comment

                    • Albi009
                      Sergeant

                      • Jun 2010
                      • 39

                      #11
                      Re: Forms not working properly

                      Originally posted by navaldesign View Post
                      @ Albi009:

                      your assessment form NAME contains white spaces. The following is taken from your page code:

                      <formname="Assessment form" As you see there IS a white space between "Assessment" and "form"

                      Your contact form instead has TWO whitespaces:

                      <formname="Contact us " one between "Contact" and "us" and one at the end of the name.
                      Hi,
                      I corrected that field also now it is not submitting. When i click on submit button it is still. Please help me. Thanks in advance

                      Comment

                      • navaldesign
                        General & Forum Moderator

                        • Oct 2005
                        • 12080

                        #12
                        Re: Forms not working properly

                        Your form doesn't work because you have added an Event to the Submit button.

                        onclick="ShowObject('', 1);

                        Not only, but it is also wrong as there is no target for the event.

                        REMOVE the event from the submit button.
                        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

                        • Albi009
                          Sergeant

                          • Jun 2010
                          • 39

                          #13
                          Re: Forms not working properly

                          Originally posted by navaldesign View Post
                          Your form doesn't work because you have added an Event to the Submit button.

                          onclick="ShowObject('', 1);

                          Not only, but it is also wrong as there is no target for the event.

                          REMOVE the event from the submit button.
                          Thanks a lot Navaldesign. You are great. It is working now. Wowww Thanks Thanks Thanks

                          Comment

                          Working...
                          X