![]() |
|
| |||||||
| Notices |
| Forms Discussion and help related to designing and implementing forms in the BlueVoda Website Builder. |
![]() |
| | LinkBack | Thread Tools |
|
#1
| |||
| |||
|
Dear Friends, I tried to create the Thank You Page for the form in my website but while pasting the HTML code, I could not find those two lines which I need to change (my email id and subject line). Please suggest me the correct way if I am mistaking anywhere. Your Help Will be highly appreciated. http://www.find-list.com/feedback.html |
|
#2
| ||||
| ||||
|
You are certainly making a mstake. The code that you need to paset is in the forms Tutorial 1 and for your convenience i will post it here under. As you see, there are three lines with parts in blue, these are the ones that need editing. Here follows the code: <?PHP $mailto = "youremail@yourdomain.com"; $email = $HTTP_POST_VARS['email']; if ($email == "") { $email = $mailto; } $mailsubj = "Type your mail 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)) { if ($key!="submit") { $mailbody .= "$key : $val\n"; } } mail($mailto, $mailsubj, $mailbody, $mailhead); ?>
__________________ 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! |