Announcement

Collapse
No announcement yet.

form stiil don't understand it!

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

  • form stiil don't understand it!

    i have read the sticky thread about the forms
    but i don't understand how to upload the file FEEDBACK.PHP to yur domain...?
    i'm just a newbie plz help me out with this

  • #2
    please read the below

    Discussion and help related to designing and implementing forms in the BlueVoda Website Builder.

    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


    • #3
      LOL
      i already readed the thread but i don't understand how upload the file FEEDBACK.PHP to your domain??
      and most i costume the script?

      message from newbie!!

      Comment


      • #4
        Search for feedback.php on this forum and you will find 101 answers your question.

        Here's the complete instruction once again:

        Change the form properties (in BlueVoda) to:
        Action: feedback.php
        Method: POST

        EncodingType:
        (remove the text/plain, so the field becomes empty)

        Now create a new file using Notepad and call it: feedback.php
        Enter the following code into the file:
        <HTML>
        <HEAD>
        <TITLE>Thank you for your feedback</TITLE>
        </HEAD>
        <BODY>
        <H2>Thank you for your feedback!</H2>
        <?PHP
        $email = $HTTP_POST_VARS[email];
        $mailto = "yourname@yourdomain.com";
        $mailsubj = "Feedback form";
        $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>



        Make sure your form contains an editbox with the name 'email'
        Finally upload feedback.php to your web server.

        TIP: Instead of creating the feedback page using notepad you can also use BlueVoda:
        http://www.vodahost.com/vodatalk/showthread.php?t=809
        and scroll all the way down to see my last post.
        Forum Moderator
        BlueVoda Spe******t

        Comment


        • #5
          thx guys sorry for all the trouble but i'm just noob :P

          Comment

          Working...
          X