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?
encryption, please help
Collapse
X
-
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!
-
-
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!!
Comment
-
-
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!
Comment
-
Comment