+ Reply to Thread
Results 1 to 4 of 4

Thread: Totally frustrated with email forms
      
   

  1. #1
    Tristan is offline Corporal
    Join Date
    Nov 2005
    Posts
    17

    Default Totally frustrated with email forms

    Can anyone help me with my form? You can see it at www.re-flections.co.uk/contact.html. When you submit the form it just gives me the option to send an email. I've read that PHP script is better than mailto, but I have no idea how to make a script. I've tried the suggestions on the tutorial, but it's not worked. How can I configure this form, so that it will send me the details? Please help me!

  2. #2
    VodaHost's Avatar
    VodaHost is offline General & Forum Administrator
    Join Date
    Mar 2005
    Location
    Wilmington, Delaware USA
    Posts
    11,390

    Lightbulb Never Give UP - Never Surrender

    Email forms are very easy. Please....

    1) Read this >>> http://www.vodahost.com/vodatalk/forms/246-email-forms.html
    2) Watch the two form tutorials again. I know you have watched them...Wtach them again!
    3) Try again, and if you fail again,,,try again.


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

    Your thank you page is called

    http://www.re-flections.co.uk/POST This is wrong!!!

    it should be called....

    http://www.re-flections.co.uk/contact.php

    the HTML page the the form is on should have the same name as the PHP page.

    Lets see the PHP code you are using. Post it here.

    *****
    Last edited by VodaHost; 11-12-2005 at 12:09 AM.

    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
    Tristan is offline Corporal
    Join Date
    Nov 2005
    Posts
    17

    Default

    Email forms are not easy for me. They give me headaches. Even after watching the videos I still can't do them. Can you see anything wrong with this script?



    <HTML>
    <HEAD>
    <TITLE>Succesfully processed your order</TITLE>
    </HEAD>
    <BODY>
    <H2>Thanks we will contact you shortly</H2>
    <?PHP
    $email = $HTTP_POST_VARS[email];
    $mailto =
    info@re-flections.co.uk;
    $mailsubj = "Enter Your Subject Here";
    $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>



  4. #4
    Tristan is offline Corporal
    Join Date
    Nov 2005
    Posts
    17

    Default

    I've done it and I can't believe it! After days of trying I've managed to do it. Thanks so much for your help. It was just pure carelessness on my part. I re-read the php script and it dawned on me that I had left some information out. Thanks for your suggestions.

Thread Information

Users Browsing this Thread

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

     

Similar Threads

  1. Email Forms
    By Anonymous in forum Forms
    Replies: 37
    Last Post: 03-05-2006, 10:18 PM
  2. HELP!!! Email forms
    By lionofj in forum General Support Issues
    Replies: 0
    Last Post: 10-01-2005, 10:39 PM
  3. cPanel email problem
    By Lisa in forum Email Problems (POP, SMTP & Webmail)
    Replies: 14
    Last Post: 07-18-2005, 03:24 PM
  4. Email links problem - help !!!!
    By bounce in forum General Support Issues
    Replies: 1
    Last Post: 06-16-2005, 07:12 PM
  5. Email forms on BlueVoda
    By Charmed in forum General Support Issues
    Replies: 1
    Last Post: 06-06-2005, 09:53 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