+ Reply to Thread
Results 1 to 4 of 4

Thread: Form
      
   

  1. #1
    star456 is offline Private
    Join Date
    Nov 2005
    Posts
    1

    Question Form

    I am trying to create a form that people can fill out, and once they click submit their answers will be emailed to me.
    First of all, I have no idea how to do this.
    Secondly, when i go to the object properties of my submit button, the "OnClick" action and value is unclickable.
    I dont know what to do.
    Please help.
    Thanks in advance.

  2. #2
    Watdaflip's Avatar
    Watdaflip is offline Major General
    Join Date
    Sep 2005
    Location
    Cincinnati, Ohio
    Posts
    2,119

    Default

    Heres a quick form submittion and how to get the results

    <form action="submit.php" method="post">
    <input type="text" name="email">
    <input type="submit" value="Submit">
    </form>

    Then the form will get submitted to the page submit.php, on that page you can retreive the info by doing this.

    <?
    $email = $_POST['email'];
    ?>

    The $_POST function will retrieve the ifno submited from the form element who's "name" tag corresponds to what is inside the [] of the $_POST.

    Hope that helps some

  3. #3
    Brad's Avatar
    Brad is offline Forum Administrator
    Join Date
    Jun 2005
    Location
    Wilmington, Delaware
    Posts
    525

    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)



  4. #4
    Nyoman is offline Major
    Join Date
    Sep 2005
    Location
    heavenly-temple
    Posts
    426

    Default Re: Form

    or go in here : http://www.vodahost.com/vodatalk/forms/933-forms-question.html
    you will find the answer!
    .
    .
    Nyoman

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, 04:27 AM
  2. E-mail form problems
    By prosper in forum Email Problems (POP, SMTP & Webmail)
    Replies: 3
    Last Post: 10-07-2005, 10:49 PM
  3. Can someone please test my form?
    By Patti Johnson in forum BlueVoda - General Issues
    Replies: 7
    Last Post: 10-06-2005, 06:20 AM
  4. Order form with uploaded image...
    By whoopbird in forum BlueVoda - General Issues
    Replies: 3
    Last Post: 10-01-2005, 03:36 AM
  5. HTML code for Contact Form
    By Patti Johnson in forum BlueVoda - General Issues
    Replies: 2
    Last Post: 09-22-2005, 06:56 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