Announcement

Collapse
No announcement yet.

Can Anybody Help Me Validating my felds

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

  • #46
    Re: Can Anybody Help Me Validating my felds

    Originally posted by hreftovoda
    Navaldesign, do you have freetime most of the time? because i notice that you always in the forum. but that is good, so all the one need help will get the answer straight away. Thank you. I'm just curious :)
    I'm awake almost 18-19 hours a day, most of them working. So having a look at the forum just makes me rest a while.
    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


    • #47
      Re: Can Anybody Help Me Validating my felds

      ok,the comment and send me news letter are on the e-mail but i tryed them out and like if the check box is check it does not say anything neather does the comment field

      Comment


      • #48
        Re: Can Anybody Help Me Validating my felds

        Originally posted by jabird60
        ok,the comment and send me news letter are on the e-mail but i tryed them out and like if the check box is check it does not say anything neather does the comment field
        I forgot the ) symols in there:

        @$Comments = addlashes($_POST['Comments']);
        @$Send_Me_News_Letter = addlashes($_POST['Send_Me_News_Letter']);



        Also change in the form, the field name in Send_Me_News_Letter, (must be with underscores)

        and in the mail body

        . "Send Me News Letter : $Send_Me_News_Letter\n";

        instead of:

        . "Send Me News Letter : $Send_Me_Newsletter\n";

        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


        • #49
          Re: Can Anybody Help Me Validating my felds

          there sitll not working

          Comment


          • #50
            Re: Can Anybody Help Me Validating my felds

            Originally posted by jabird60
            there sitll not working
            Please use the following code as it is. Copy it, paste it in notepad, go to "Save as", chose "All files" and save it with the name of "registration.php". Upload it on the server.

            <?php
            // Receiving variables
            @$Name = addslashes($_POST['Name']);
            @$Gamertag = addslashes($_POST['Gamertag']);
            @$Email = addslashes($_POST['Email']);
            @$Send_Me_News_Letter = addslashes($_POST['Send_Me_News_Letter']);
            @$Comments = addslashes($_POST['Comments']);
            // Validation
            if (strlen($Name) == 0 )
            {
            header("Location: error_name.html");
            exit;
            }
            if (strlen($Gamertag) == 0 )
            {
            header("Location: error_gamertag.html");
            exit;
            }
            if (! ereg('[A-Za-z0-9_-]+\@[A-Za-z0-9_-]+\.[A-Za-z0-9_-]+', $Email))
            {
            header("Location: error_email.html");
            exit;
            }
            if (strlen($Email) == 0 )
            {
            header("Location: error_email.html");
            exit;
            }
            //Sending Email to form owner
            $pfw_header = "From: $Email\n"
            . "Reply-To: $Email\n";
            $pfw_subject = "Turnament Signups";
            $pfw_email_to = "turn@thiselitelfie.com";
            $pfw_message = "Name: $Name\n"
            . "Gamertag: $Gamertag\n"
            . "Email: $Email\n"
            . "Send_Me_News_Letter: $Send_Me_News_Letter\n"
            . "Comments: $Comments\n";
            *****($pfw_email_to, $pfw_subject ,$pfw_message ,$pfw_header ) ;
            header("Location: confirmation.html");
            ?>
            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


            • #51
              Re: Can Anybody Help Me Validating my felds

              thanks

              Comment


              • #52
                Re: Can Anybody Help Me Validating my felds

                ok,now i am not reciveing any e-mails

                Comment


                • #53
                  Re: Can Anybody Help Me Validating my felds

                  never mind,i look over the script and found a error you spelled thiselitelife.com worng . the life in thiselitelife.com

                  Comment


                  • #54
                    Re: Can Anybody Help Me Validating my felds

                    Originally posted by jabird60
                    never mind,i look over the script and found a error you spelled thiselitelife.com worng . the life in thiselitelife.com
                    I had it copied from the script you posted above
                    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


                    • #55
                      Re: Can Anybody Help Me Validating my felds

                      Oh,ok i apolagized

                      Comment


                      • #56
                        Re: Can Anybody Help Me Validating my felds

                        Originally posted by jabird60
                        Oh,ok i apolagized
                        Yes, but did it work ?
                        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


                        • #57
                          Re: Can Anybody Help Me Validating my felds

                          yes it did, it works fantastic. Dude you are really awsome

                          Comment


                          • #58
                            Re: Can Anybody Help Me Validating my felds

                            Do you work with voda host?? How Did you become a Modarator??

                            Comment


                            • #59
                              Re: Can Anybody Help Me Validating my felds

                              Originally posted by jabird60
                              Do you work with voda host?? How Did you become a Modarator??
                              I don't know. Maybe my wife gave some tip to Voda guys. Just joking. No, i'm a customer also. ***** made me this honour and i'm really happy with it
                              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


                              • #60
                                Re: Can Anybody Help Me Validating my felds

                                that's kool

                                Comment

                                Working...
                                X