Announcement

Collapse
No announcement yet.

navaldesign script for TAF button?

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

  • #16
    Re: naveldesign script for TAF button?

    I also put his name in the subject
    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


    • #17
      Re: naveldesign script for TAF button?

      um...on your thank you page I dont see the link to download the script..there is one on the TAF page, but that seems to be the same zip file

      Comment


      • #18
        Re: naveldesign script for TAF button?

        Go for it, i just changed the php inside the zip
        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


        • #19
          Re: navaldesign script for TAF button?

          Big cheeky grins...cool!

          Comment


          • #20
            Re: navaldesign script for TAF button?

            the tellafriend.php is the same as before, is that where the changes are or in the other php files?
            sorry thinkheaddedfrenchman!

            Comment


            • #21
              Re: navaldesign script for TAF button?

              It has the same name, but the code is changed. Go for 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


              • #22
                Re: navaldesign script for TAF button?

                Also here:

                <?php
                require("class.phpmailer.php");
                @$name = addslashes($_POST['name']);
                @$friendname = addslashes($_POST['friendname']);
                @$email = addslashes($_POST['email']);
                @$subject = addslashes($_POST['subject']);
                @$message = addslashes($_POST['message']);
                @$youremail = addslashes($_POST['youremail']);

                $mail = new PHPMailer();
                $mail->IsSMTP(); // send via SMTP
                $mail->Host = "localhost"; // SMTP servers
                $mail->SMTPAuth = true; // turn on SMTP authentication
                $mail->Username = "yourusername"; // SMTP username
                $mail->Password = "yourpassword"; // SMTP password
                $mail->From = $youremail; // Your email in your account
                $mail->FromName = "Administrator at yoursite";// The From name you want to appear in the email
                $mail->AddAddress($email); //the receiver's email'
                $mail->WordWrap = 50; // set word wrap
                $mail->Subject = "$subject $name\n";
                $mail->Body = "Hi $friendname\n"
                . "$message\n "
                . " \n"
                . " Bye $name\n";
                if(!$mail->Send())
                {
                echo "Message was not sent <p>";
                echo "Mailer Error: " . $mail->ErrorInfo;
                exit;
                }
                header("Location: returnpage.html"); // returnpage is the same page of the form or another of your choice.

                ?>

                The only things you should change is the loggin info which is in blue and the returnpage 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


                • #23
                  Re: navaldesign script for TAF button?

                  " Bye $name\n";
                  that was the section I was looking for and it wasnt there in the download..now I should be good to go!

                  Comment


                  • #24
                    Re: navaldesign script for TAF button?

                    Oh yea darling just as slick as butter on a hot day! whoo hoo!
                    I may not ever be able to write scripts..but I do feel much more comfortable with them!....
                    thank again my patient one!

                    Comment


                    • #25
                      Re: navaldesign script for TAF button?

                      You're welcome Kate!
                      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


                      • #26
                        Re: navaldesign script for TAF button?

                        Of course I had to change "bye" to "enjoy"...lol...but no no it works!..lol

                        Comment

                        Working...
                        X