+ Reply to Thread
Results 1 to 3 of 3

Thread: Having problems with my contact form...
      
   

  1. #1
    SageofSydney is offline Private First Class
    Join Date
    May 2006
    Posts
    5

    Default Having problems with my contact form...

    I'm having problems with my contact.html page...

    I've followed the script from the tutorils but I still seems to get nothing but a blank email...

    Can anyone offer suggestions?

    <HTML>
    <HEAD>
    <TITLE>Thank you for your enquiry</TITLE>
    </HEAD>
    <BODY>
    <H2>Thank you for your enquiry!</H2>

    <?PHP
    $email = $HTTP_POST_VARS[email];
    $mailto = "mail@actualiseconsulting.com.au";
    $mailsubj = "Enquiry from Contact page";
    $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>
    </HTML>

    The site is http://www.actualiseconsulting.com.au/contact.html

    Any help would be muchly appreciated.

    Warm Regards,
    Sage

  2. #2
    Sarah's Avatar
    Sarah is offline Colonel
    Join Date
    May 2005
    Location
    Wilmington, Delaware
    Posts
    513

    Default Re: Having problems with my contact form...

    You need to click on your form in BlueVoda, and then delete text/plain from the encoding type, this field needs to be left blank. After you do this, save and republish the page, the form will work!

    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
    Join Date
    Mar 2006
    Location
    Mallorca, Spain
    Posts
    6,313

Thread Information

Users Browsing this Thread

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

     

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