Results 1 to 5 of 5

Thread: form stiil don't understand it!
      
   

  1. #1
    Lustrias is offline Private First Class
    Join Date
    Sep 2005
    Posts
    5

    Question 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. #2
    VodaHost's Avatar
    VodaHost is offline General & Forum Administrator
    Join Date
    Mar 2005
    Location
    Wilmington, Delaware USA
    Posts
    11,428

    Default


    VodaHost

    Your Website People!
    1-302-283-3777 North America / International
    07031847328 / United Kingdom

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

    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)



  3. #3
    Lustrias is offline Private First Class
    Join Date
    Sep 2005
    Posts
    5

    Default

    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!!

  4. #4
    Pablo is offline Moderator
    Join Date
    May 2005
    Posts
    507

    Default

    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/bluevoda-general-issues/809-help-forms.html
    and scroll all the way down to see my last post.
    Forum Moderator
    BlueVoda Specialist

  5. #5
    Lustrias is offline Private First Class
    Join Date
    Sep 2005
    Posts
    5

    Default

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

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Similar Threads

  1. Order Form and Paypal Help Please
    By Gramma Anna in forum General Support Issues
    Replies: 3
    Last Post: 05-07-2006, 03:27 AM
  2. E-mail form problems
    By prosper in forum Email Problems (POP, SMTP & Webmail)
    Replies: 3
    Last Post: 10-07-2005, 09:49 PM
  3. Order form with uploaded image...
    By whoopbird in forum BlueVoda - General Issues
    Replies: 3
    Last Post: 10-01-2005, 02:36 AM
  4. HTML code for Contact Form
    By Patti Johnson in forum BlueVoda - General Issues
    Replies: 2
    Last Post: 09-22-2005, 05:56 PM
  5. Creating a email form !
    By aliale in forum General Support Issues
    Replies: 1
    Last Post: 07-13-2005, 01:03 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49