The official web hosting company for the BlueVoda Website Builder. You are currently viewing our support forum as a guest which gives you limited (read only) access. By joining our support forum you will be able to ask questions, participate in discussions and receive assistance. Registration is fast and simple. Click Here To Join our support forum today! We look forward to helping you build and publish a fantastic website.
If you have a <, you have copied invalid code into the HTML box. Looking at your code it contains several errors, so please follow these instructions carefully and ignore any other versions of this script on the forum;)
Anyway here's the correct code and implementation one more time:
1. Create a new page with BlueVoda (let's say feedbackform.bvp)
2. Drag the Form object to the page and a draw a box to indicate the position of the form.
3. Design your form by adding some Form controls to the form:
Buttons, Image Buttons, Advanced Buttons, Checkboxes, Radio buttons, Editboxes, Text Areas and Comboboxes.
You can also make text and images part of the form.
Notice that all objects become a part of the form, so when you change the position of the form all those objects move along.
4. Make sure your form contains a Submit button. Without this button the user will not be able to submit the entered data.
5. Once you have designed your form, you may need to set some properties. Select the form and choose Edit|Properties from the BlueVoda menu. The most important thing you need to do is specify the form action.
In this case we are going to use a second (PHP) page to process the results of the form and this will be the confirmation page at the same time.
So set the action property to feedback.php
and remove any text from the encoding type property.
6. Publish the feedbackform.bvp page to your VodaHost account.
7. Now let's create the confirmation page using BlueVoda:
8. Create a new page with BlueVoda and save is as 'feedback.bvp'.
9. Select View->Page HTML from the menu
10. Select the Inside Body tag and enter this code:
<?PHP
$email = $HTTP_POST_VARS[email]; $mailto = "feedback@yourdomain.com"; $mailsubj = "Feedback form"; $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); ?>
11. Do the usual page formatting with BlueVoda, for example add a textbox with the text "Thanks for your feedback, your comments have been processed!"
12. Select View->Page Properties from the menu
13. Set the file extension to php
14. Publish the page feedback.bvp to your VodaHost account.
Now you have two pages:
1) a page with the feedback form
2) a page that processes the input and displays a confirmation message.
Notes:
- Instead of feedback you can give it any name you like.
- The blue text in the code above can be changed to anything you like, but be sure you keep the double quotes.
Pablo
Pablo
I ahve copied these instructions to the letter. but it still doesn't work . I have Quoteform.html and Quote.php.
When I submit my form I don't get an e mail in my inbox and I the page refers me to Can't find the page in IE !!
What have i done wrong ? Any help would be most welcome !
I ahve copied these instructions to the letter. but it still doesn't work . I have Quoteform.html and Quote.php.
When I submit my form I don't get an e mail in my inbox and I the page refers me to Can't find the page in IE !!
What have i done wrong ? Any help would be most welcome !
Thanks
John
Give me the URLs of your pages and i'll have a look
Navaldesign Logger Lite:Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.comForms, 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!
Please note that you can at present only access the quote form page from the index page(homepage) the other navigation bars on the other pages have been set to a default of www.jhgd.co.uk/Quote.html cos its working correctly.
Sorry should read its not working correctly ( the form that is !)
Well, there are some errors in your form:
1. You have set the "action" to "Quick.php" . As you said, your php page is Quote.php. That's why you get a 404 error. Correct it. It would be wise to change also your pages names in all lower case letters. (q instead of Q)
2. You have three text field, all named "T1" that is the default name given by BV
3. Your Radio buttons don't work. That's because you didn't gave them the same group name (f.e. "Lenght units" for the first two, "Width units" for the second group.)
Another thing: sometimes Encoding"" doesn't work and you have to change it in "multipart/form data". Try first as it is, if it doesn't work try changing it.
Navaldesign Logger Lite:Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.comForms, 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!
I have altered everything you said and it works beautifully. Thank you so much navaldesign your patience is much appreciated. Sometimes you can't see the wood for the trees and longer you look the more you can't see it. Or in my case seeing that Quote is indeed different to the word Quick !
$email = $HTTP_POST_VARS[email]; $mailto = "feedback@yourdomain.com"; $mailsubj = "Feedback form"; $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); ?>
This all worked fine for me with the script. I want to take it a step further now and instead of having a simple, THANKYOU FOR YOUR FEEDBACK in text on an otherwise blank page, i would like it to happen like this.
Once the form has been submitted and auto sent to my inbox, i would like the re-direct to be straight back to my website and linked to a nicer, more professional page i have already built. I am sure that it is only a case of linking it all up but i wouldnt know where to put it within this script.
This all worked fine for me with the script. I want to take it a step further now and instead of having a simple, THANKYOU FOR YOUR FEEDBACK in text on an otherwise blank page, i would like it to happen like this.
Once the form has been submitted and auto sent to my inbox, i would like the re-direct to be straight back to my website and linked to a nicer, more professional page i have already built. I am sure that it is only a case of linking it all up but i wouldnt know where to put it within this script.
before the ?> at the end of the script. Change thankyou_page.html to your page name.
Navaldesign Logger Lite:Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.comForms, 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!
<?PHP
$email = $HTTP_POST_VARS[email];
$mailto = "my email address";
$mailsubj = "New Order";
$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); header("Location: http://www.yourdomain.com/thankyou_page.html");
?>
Copy this code, paste it in Notepad. Go to "Save as" , choose for "File type" "All files" and save it with the same name that you used till now, f.e. "feedback.php". Upload it on your site using Blue FTP. For the thankyou page, create and publish a normal BV page, save it as "thankyou_page" and publish it. You're done.
Navaldesign Logger Lite:Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.comForms, 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!
I dont know why these forms are so hard as I have read through this forum many times. I'm one of those guys who doesn't like to ask directions so I have gone over my pages and php file many times. I have decided I am now LOST and I need to ask for help.
My page ...
This page is for a COD UO gaming group and we need a recruit form setup.
My form property has the Action set at recruit.php and encoding is left blank.
I created a recruit.php by the steps listed above. Check the bluevoda property of recruit.php and its set to php. I have saved both files and published them. The file recruit.php is listed on server side as well.
I get the following error ...
***********
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster@toxic-army.lhcgroup.net and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
In my opinion, it's something in your "recruit.php" script thet causes it. Would you mind uploading the script code?
Navaldesign Logger Lite:Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.comForms, 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