There are many reasons why you might not want to use CGI forms on your Web site. For example your web site may be on a free host that does not allow custom CGI scripts. You may want to conserve bandwidth on your Web server. Or maybe you just don’t want the hassle of CGI programming.
Welcome to Bucaro TecHelp!

Welcome to Bucaro TecHelp!
Maintain Your Computer and Use it More Effectively
to Design a Web Site and Make Money on the Web

About Bucaro TecHelp About BTH User Agreement User Agreement Privacy Policy Privacy Site Map Site Map Contact Bucaro TecHelp Contact Advertise on Bucaro TecHelp Advertise Here RSS News Feeds News Feeds

HTML5 Solutions: Essential Techniques for HTML5 Developers

Essential Techniques for HTML5 Developers

HTML5 brings the biggest changes to HTML in years. Web designers now have new techniques, from displaying video and audio natively in HTML, to creating realtime graphics on a web page without a plugin.

This book provides a collection of solutions to all of the most common HTML5 problems. Every solution contains sample code that is production-ready and can be applied to any project.

Click Here

Submit Forms Without CGI

There are many reasons why you might not want to use CGI forms on your Web site. For example your web site may be on a free host that does not allow custom CGI scripts. You may want to conserve bandwidth on your Web server. Or maybe you just don’t want the hassle of CGI programming.

An alternative method to let visitors to your Web site submit forms is through email. If you know how to code a form in html and you know a little JavaScript, then designing a form for email submission is not difficult. If you don’t know either of those things, you can still design your own email submission form if you can follow the pattern of the code provided with this article.

The code provides an example of using checkboxes, a select list, and a text area with an email submission form. If you can follow the pattern, you can edit the code to your requirements, remove some elements, and add more of a different element.

The code comes in two basic parts, the html form, and a JavaScript function that applies a bit of processing to the form’s data before submitting it to the users email program.

The first problem I found with submitting a form by email is that the form’s action property captures only the first input element of the form. So I added a hidden input as the first element of the form. When the user clicks on the "Submit" button, the form is passed to a JavaScript function that collects the data from all the input elements of the form and places them in that first hidden element.

The second problem I found with submitting a form by email is that the form’s data is submitted in URL encoded format. It's possible to type any character into a text box on a form, including slashes and other characters that have meaning in a URL. Also, a URL can’t have spaces. When you submit the form, the browser replaces dangerous characters with other characters, and spaces are replaced with "+" signs. The JavaScript function uses URL escape characters to reformat the data so it creates a more understandable email message.

To a non-programmer, the escape characters make the JavaScript code look way more complicated than it is. You might want to make a second copy of the code, and in that copy, remove all the escape characters to make the program more readable. The escape characters used are listed below.

%0a = Line Feed
%0d = Carriage Return
%20 = Space

RSS Feed RSS Feed



Web Design Sections

Eloquent JavaScript: A Modern Introduction to Programming

Eloquent JavaScript

Eloquent JavaScript Eloquent JavaScript goes beyond the cut-and-paste scripts of the recipe books and teaches you to write code that's elegant and effective. You'll start with the basics of programming, and learn to use variables, control structures, functions, and data structures. Then you'll dive into the real JavaScript artistry: higher-order functions, closures, and object-oriented programming.

Reader Anthony says, "This book is not your typical Javascript book. Others have a utilitarian approach. In stark contrast, Eloquent JavaScript does not merely provide you a checklist of things to learn but rather paints a panorama of the possibilities that programming provides. Javascript is merely the tool used to introduce these to the reader.

Click here for more information.


[Site User Agreement] [Advertise on This site] [Search This Site] [Contact Form]
Copyright©2001-2011 Bucaro TecHelp 13771 N Fountain Hills Blvd Suite 114-248 Fountain Hills, AZ 85268