Results 1 to 4 of 4

Thread: encryption, please help
      
   

  1. #1
    jaymoh is offline First Sergeant
    Join Date
    Jun 2008
    Posts
    82

    Default encryption, please help

    Hi...my contact page and booking info page is encrypted at the top.. and i cant send or receive mails,when send it shows php server something like that,how do i remove that part of encrypted and what do i have to make my forms work? am i suppose to install kinda software cpanel? if so what type of software....PLEASE CAN SOMEONE HELP ME?


    www.zamundaafricanacrobats.com

  2. #2
    navaldesign's Avatar
    navaldesign is offline General & Forum Moderator
    Join Date
    Oct 2005
    Location
    Italy
    Posts
    12,115

    Default Re: encryption, please help

    You have no form in your booking page! Just the fields, but no form.
    And you have used the guestbook as a contact form in your contact page!!

    You don't need to install anything, you simply need to read (again) carefully the form tutorials and follow the instructions on the letter.
    Navaldesign
    Logger Lite: Low Cost, Customizable, multifeatured Login script
    Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
    DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
    Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!


  3. #3
    nafta is offline Private First Class
    Join Date
    Mar 2008
    Posts
    9

    Default Re: encryption, please help

    HI,
    I know you have said many times to use bv10 but i am happy with bv9 and my problem is that i cannot find the php code anymore and just need this to finish my website...please please can you give me this code and tell me where to paste it again as i cannot remember


    thank you!!

  4. #4
    navaldesign's Avatar
    navaldesign is offline General & Forum Moderator
    Join Date
    Oct 2005
    Location
    Italy
    Posts
    12,115

    Default Re: encryption, please help

    Here it is:

    <?PHP
    $mailto = "youremail@yourdomain.com";
    $email = $HTTP_POST_VARS['email'];
    if ($email == "") {
    $email = $mailto;
    }
    $mailsubj = "Type here whatever you want to appear as mail subject";
    $mailhead = "From: $email\n";
    reset ($HTTP_POST_VARS);
    $mailbody = "Values submitted from our website form:\n";
    while (list ($key, $val) = each ($HTTP_POST_VARS))
    {
    if ($key!="submit")
    {
    $mailbody .= "$key : $val\n";
    }
    }
    mail($mailto, $mailsubj, $mailbody, $mailhead);
    ?>


    Paste the code in the Start of Page of the "thankyou" (action) page HTML.
    Navaldesign
    Logger Lite: Low Cost, Customizable, multifeatured Login script
    Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
    DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
    Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!


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