![]() |
|
| |||||||
| Notices |
| Forms Discussion and help related to designing and implementing forms in the BlueVoda Website Builder. |
![]() |
| | LinkBack | Thread Tools |
|
#1
| |||
| |||
| Client ID 23892 008automotive.com please could someone check my code (below). I have changed my encoding to multipart/form data. I was getting just a blank e-mail as my first problem with no values on it. That has been replaced now with Parse error: syntax error, unexpected '<' in /home/odsfxomt/public_html/action.php on line 40 I have checked line 40...seems OK to me (but i'm not an expert) I have placed the code between head tag (is that correct)? or should it be inside body tag? link to my page http//:www.008automotive.com/action.html Could somebody help please Thanks PS how can I delete my previous request, as i realised help help help doesn't help at all... |
|
#2
| |||
| |||
| sorry the code would help...........below...!!! <?PHP $mailto = "?????@008automotive.com"; $email = $HTTP_POST_VARS['email']; if ($email == "") { $email = $mailto; } $mailsubj = "Enquiry Form Submission"; $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 .= "$val\n"; } |
|
#3
| ||||
| ||||
| You have mised an entire part of 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! |
|
#5
| ||||
| ||||
| Did you add the missing } ???
__________________ 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! |