Announcement

Collapse
No announcement yet.

Email form

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

  • #16
    Allan, Allan, Allan...What are going to do with you:)
    Please do not start or post multiple threads for the
    same topic. it causes VodaChoas.

    VodaHost

    Your Website People!
    1-302-283-3777 North America / International
    02036089024 / United Kingdom
    291916438 / Australia

    ------------------------

    Top 3 Best Sellers

    Web Hosting - Unlimited disk space & bandwidth.

    Reseller Hosting - Start your own web hosting business.

    Search Engine & Directory Submission - 300 directories + (Google,Yahoo,Bing)


    Comment


    • #17
      Originally posted by VodaHost
      Allan, Allan, Allan...What are going to do with you:)
      Please do not start or post multiple threads for the
      same topic. it causes VodaChoas.
      Oh, St. *****, please tell me how to upload to the domain from the notepad file feedback.php since Pablo is not around.

      Comment


      • #18
        Use BlueFTP, check out the Voda tutorials about this great tool:
        Forum Moderator
        BlueVoda Spe******t

        Comment


        • #19
          Originally posted by Pablo
          Use BlueFTP, check out the Voda tutorials about this great tool:
          http://www.vodahost.com/DemoDemo/ftp...da_blueftp.htm
          Great! Thanks Pablo. How come I didn't see this demo in the tutorial? :0

          Comment


          • #20
            [QUOTE=Pablo]First of all this script has nothing to do with BlueVoda and is provided for support purposes only. It is created to work around bugs and design flaws in 3rd party products. The script is provided "AS IS" without warranty of any kind. However it seems to work for most of the users.

            It MUST have the .php externsion not .txt or .php.txt
            Please replace all

            How do I replace all ;with <? What is &lt? I see the uploaded file has the .php.txt. I tried to change it by right click it and go to properties. I tried to change it that way and it doesn't work. I know I must have done it incorrectly. Please give me step by step instruction. Thanks.

            Comment


            • #21
              I did the insert in the beginning of body with the email address changed to lct@lctfinejewelers.com and I have upload the feedback.php in the domain using the ftd manager. When I tried to submit the form for testing, it says the page cannot be found. I must have done something wrong. I changed the text object properties to feedback.php and set it to post and cleared the encoding type just like what you suggested too. Hmmmmmmmmmm. HELP!

              Comment


              • #22
                i have followed all instructions.....but

                my page:

                http://graphxntrix.com/GX_TEAM.html contains my form with:

                name
                email
                text area
                submit

                i formatted the form properties
                ACTION: GX_TEAM.php
                METHOD: POST
                Cleared the text/plain to be empty

                I created my .php file in notepad and uploaded to my public folder. Am I missing a concept here or something because i get this error:

                Parse error: parse error, unexpected T_STRING in /home/graph/public_html/GX_TEAM.php on line 11

                help..i really would jump for joy to see this task finished and over with or at least some light shed on the subject THANK YOU IN ADVANCE
                Robert
                www.GraphXntrix.com
                Your Visual Revolution Solution

                Comment


                • #23
                  Well, it looks like you have an error on line 11 in the GX_TEAM.php file...
                  Forum Moderator
                  BlueVoda Spe******t

                  Comment


                  • #24
                    $email = $HTTP_POST_VARS[email];

                    you might have to help me understand this...this is line 11
                    i have no idea what this is for or what the function is...please help
                    Robert
                    www.GraphXntrix.com
                    Your Visual Revolution Solution

                    Comment


                    • #25
                      The error indicates that you need a field (editbox) with the name 'email' in your form to make the script work.
                      Otherwise the script does'nt know the senders email address.
                      Forum Moderator
                      BlueVoda Spe******t

                      Comment


                      • #26
                        am i one of those &quot;just wont work cases&quot;?

                        Originally posted by Pablo
                        The error indicates that you need a field (editbox) with the name 'email' in your form to make the script work.
                        Otherwise the script does'nt know the senders email address.
                        if that is the case, then it is already there...



                        the form is on the right hand side...
                        my GX_TEAM.php:

                        <HTML>
                        <HEAD>
                        <TITLE>Succesfully requested contact from The GX Team</TITLE>
                        </HEAD>
                        <BODY>
                        <H2>Thank you for your request. You will recieve a response shortly. In the meantime please feel free to register in

                        the Community Bulletin Board, and explore the site at your liesure.</H2>

                        <?PHP
                        $email = $HTTP_POST_VARS[email];
                        $mailto = "contact_gx@graphxntrix.com";
                        $mailsubj = "Contact Us";
                        $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>
                        </HEAD>
                        Last edited by Sarah; 06-24-2005, 04:24 PM.
                        Robert
                        www.GraphXntrix.com
                        Your Visual Revolution Solution

                        Comment


                        • #27
                          Try this

                          Loaded your script into Zend PHP editor and the following syntax error comes up

                          Parse error: parse error, unexpected T_STRING in /home/graph/public_html/GX_TEAM.php on line 14

                          Line 14 = $mailhead = "From: $email\n";

                          The parse error is caused by missing double quote in line 12
                          Line 12 = $mailto = "contact_gx@graphxntrix.com;

                          Correct syntax
                          $mailto = "contact_gx@graphxntrix.com";
                          Edit the php file, upload and all should work.
                          To steal ideas from one person is plagiarism; to steal from many is research!

                          Comment

                          Working...
                          X