<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" ><channel><title>Epsilon Creations &#187; form</title> <atom:link href="http://www.epsil.nl/tag/form/feed/" rel="self" type="application/rss+xml" /><link>http://www.epsil.nl</link> <description>Graphic en Web Design – 3D en Multimedia</description> <lastBuildDate>Tue, 22 Mar 2011 08:59:42 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>Wufoo Form Builder &#8211; Easy online data gathering</title><link>http://www.epsil.nl/2009/02/wufoo-form-builder-easy-online-data-gathering/</link> <comments>http://www.epsil.nl/2009/02/wufoo-form-builder-easy-online-data-gathering/#comments</comments> <pubDate>Sat, 07 Feb 2009 00:46:05 +0000</pubDate> <dc:creator>Roderick</dc:creator> <category><![CDATA[Design]]></category> <category><![CDATA[AJAX]]></category> <category><![CDATA[form]]></category> <category><![CDATA[online service]]></category> <category><![CDATA[PHP]]></category> <category><![CDATA[wufoo]]></category><guid isPermaLink="false">http://www.epsil.nl/?p=71</guid> <description><![CDATA[Wufoo is an online service that helps you create forms without writing a single line of code. In this deep review, we list all the pros of using this online service and we give you alternatives.]]></description> <content:encoded><![CDATA[<p><a href="http://www.wufoo.com"><img src="http://www.epsil.nl/wp-content/uploads/wufoo-website.jpg" alt="wufoo-website" title="wufoo-website" width="560" height="238" class="aligncenter size-full wp-image-208" /></a></p><h3>What is Wufoo?</h3><p><a href="http://wufoo.com/">Wufoo</a> is an online service that helps you create forms without writing a single line of code.</p><p>It is so easy to use that even the greenest web designer or freelancer, can have wonderfully styled forms inside his or her own web pages, and without the need of even one single aspirin to combat all the headaches associated with the creation of forms.</p><p><img src="http://www.epsil.nl/wp-content/uploads/form.png" alt="form" title="form" width="128" height="128" class="alignright size-full wp-image-234" />With Wufoo you can visually create a form, just adding elements with drag and drop mouse gestures, visually change its design and presentation (colors, backgrounds, font-type, sizes, etc.). And also decide what to do with the information later on, like for example send it to your e-mail box.</p><p>It even creates reports and charts of the submissions, has the ability to export data to many different formats (like for example Excel or PDF files), and many other options that we will talk about later.</p><p><span id="more-71"></span></p><p>We are truly in love with this service, we not only use it ourselves, but also recommend it to all our clients, let it be its free incarnation or a paid one if the free plan is not enough for them.</p><p>But before we talk about Wufoo, let&#8217;s first see what exactly <a href="http://www.w3schools.com/html/html_forms.asp">HTML forms</a> are, what can be done with them, and why it takes so much time to implement them.</p><h3>HTML Forms</h3><p><img src="http://www.epsil.nl/wp-content/uploads/form-blue.jpg" alt="form-blue" title="form-blue" width="200" height="164" class="alignright size-full wp-image-236" />Almost every web site in existence has at least one kind of form embedded in its pages, it could be just a simple contact form, a newsletter e-mail form, or even a complex client or product survey form.</p><p>The extended use of forms in web pages showed how indispensable they were for communications purposes, and we shouldn&#8217;t forget that they brought us the first real dynamic and interactive aspects of internet. They continue to be very useful, even if their complexity have grown exponentially.</p><p>The creation of a form is not a complex task for coders or programmers, but it did, and it still does, prove often difficult for beginners or graphic designers.</p><p><strong>The HTML code in itself is not the real problem.</strong> Using normal HTML (in this case with XHTML formatting), a simple normal form could look like this:</p><pre class="brush: xml; title: ; notranslate">
&lt;form id=&quot;ContactForm&quot; action=&quot;submit.php&quot; method=&quot;post&quot;&gt; &lt;label id=&quot;Name&quot; for=&quot;Name&quot;&gt;Name:&lt;/label&gt;
   &lt;input name=&quot;Name&quot; type=&quot;text&quot; /&gt;
   &lt;label id=&quot;Email&quot; for=&quot;Email&quot;&gt;Email:&lt;/label&gt;
   &lt;input name=&quot;Email&quot; type=&quot;text&quot; /&gt;
   &lt;label id=&quot;Message&quot; for=&quot;Message&quot;&gt;Message:&lt;/label&gt;
   &lt;textarea cols=&quot;25&quot; rows=&quot;10&quot; name=&quot;Message&quot;&gt;&lt;/textarea&gt;
   &lt;input class=&quot;submit-button&quot; name=&quot;submit&quot; type=&quot;submit&quot; value=&quot;Submit&quot; /&gt;
&lt;/form&gt;
</pre><p>The real problem is what to do with this information once that the user clicks the &#8220;Submit button&#8221;, and how to do it. And we are not even talking about how to style it with CSS, that also, is very time consuming.</p><p>There are many methods to process a form after it is submitted, like for example using <strong>cgi-scripts, PHP, python, server extensions</strong>, etc. Also we need to take into account how to store that information, let it be into a file, a database or just to send it to our e-mail.</p><p>Let&#8217;s check <strong>some</strong> of this methods in more detail.</p><h3>A little history on how we created forms</h3><p>With the passing of time, we found ourselves creating forms in very different ways throughout the last 10 years.</p><ul><li><img src="http://www.epsil.nl/wp-content/uploads/frontpage-logo.jpg" alt="frontpage-logo" title="frontpage-logo" width="180" height="44" class="alignright size-full wp-image-240" />In the beginning, we used <a href="http://office.microsoft.com/en-us/frontpage/default.aspx">FrontPage</a> to create them. This program allowed us to make a new form in a <a href="http://en.wikipedia.org/wiki/WYSIWYG">WYSIWYG</a> way, just dropping a form into a page and consecutively its components, modifying its options one by one. If the hosting allowed the use of FP extensions, we didn&#8217;t need to worry about any coding, any scripts or problems, the extensions managed everything for us. We just configured the form to send an e-mail and to save all the information into a .cvs file.</li><li><img src="http://www.epsil.nl/wp-content/uploads/dreamweaver-logo.jpg" alt="dreamweaver-logo" title="dreamweaver-logo" width="180" height="71" class="alignright size-full wp-image-241" />A few years later, when we started to get more serious about web design and found out how bad FrontPage was at creating standard and valid code, we moved forwards and started using cgi-scripts. By then we were using <a href="http://www.adobe.com/products/dreamweaver/">Dreamweaver</a> and just starting to understand the use of <a href="http://www.w3.org/Style/CSS/">CSS</a>, but we quickly found out that this method was a little more complex to set up and make it work just like we wanted. We were using much more of our time into coding and solving script problems. The results, at least, were more than satisfactory.</li><li><img src="http://www.epsil.nl/wp-content/uploads/php_logo.jpg" alt="php_logo" title="php_logo" width="100" height="100" class="alignright size-full wp-image-238" />Not so long ago, we changed our form creation habits yet again, this time choosing for an even more complex but more controllable way of creating and managing them, that was the start of the age of PHP and databases. They were more secure, the use of databases allowed us to quickly create reports and lists of all the submissions and we were able to accommodate almost any kind of strange client requests. The drawback was that the level of complexity did jump a little higher, not to mention that the servers were busier with PHP and databases running, and that we needed a lot of time to code and configure each form. It is also noteworthy to mention, that by this time we also dropped WYSIWYG methods and start coding more and more by hand, helped by code editors.</li><li><img src="http://www.epsil.nl/wp-content/uploads/wufoo-logo.jpg" alt="wufoo-logo" title="wufoo-logo" width="180" height="85" class="alignright size-full wp-image-243" />How do we create forms now you may ask?<br /> The answer is simple.<br /> Enter the <strong>Wufoo world</strong>.<br /> We don&#8217;t need any coding, any scripts or any worry. We only need to concentrate in the design itself.</li></ul><h3>How does the Wufoo service work?</h3><p>Wufoo is an online service, so you need to create an account with them and use their website for everything.</p><p>Wufoo uses a fantastic <a href="http://en.wikipedia.org/wiki/Ajax_(programming)">AJAX</a> interface with a <a href="http://en.wikipedia.org/wiki/Web_2.0">Web 2.0</a> look, so most of its functions and menus have the same feeling as a desktop application, things like drag and drop, visual changes, configurations and so on, work right from the web UI, and all of this is presented without a page refresh.</p><p>With the <strong>free</strong> version, you can create a maximum of 3 forms, have 100 submissions per month, and use no more than 10 fields per form.</p><p>The form creation is very simple, you only need to drag and drop your components, after you finished configuring your form you can then use a theme or create a new one (colors, font-types, etc.). The last step is to copy and paste the HTML code, generated by Wufoo, into your website, and there you have it, a wonderful looking form with AJAX functionality, reports, e-mail notifications, etc.</p><p>Now let&#8217;s look at it in more detail.</p><h3>Creating a form and its fields</h3><p>Go to the <a href="http://www.wufoo.com">Wufoo Website</a> and choose a plan. I recommend the <strong>Free plan</strong>, at least to get started, it might be all you need after all.<br /> <img src="http://www.epsil.nl/wp-content/uploads/wufoo_tutorial_001.png" alt="wufoo_tutorial_001" title="wufoo_tutorial_001" width="560" height="246" class="aligncenter size-full wp-image-224" /></p><p>After you logged on into your new account, you can start creating forms right away.<br /> Your start page is the <strong>form manager</strong>, where you can see a list of your forms and view them, edit them, edit or view entries, change notifications, choose a theme or delete them. In my preview I have 3 forms already created.<br /> <img src="http://www.epsil.nl/wp-content/uploads/wufoo_tutorial_002.png" alt="wufoo_tutorial_002" title="wufoo_tutorial_002" width="560" height="250" class="aligncenter size-full wp-image-225" /></p><p>Now you can click the <strong>New Form!</strong> button to start creating your form. You can manually add fields or choose between many templates for free. The process is simple, use the left column to choose a field and drag and drop it inside the right column. You can change many options per field with just clicking them in the right side, like name or label, description, if it is required or not, etc.</p><p>The last step is to edit the <strong>Form Settings</strong> (the last tabbed menu in the right side). There you can give the form a name, description, change the Confirmation Message and so on.<br /> <img src="http://www.epsil.nl/wp-content/uploads/wufoo_tutorial_003.png" alt="wufoo_tutorial_003" title="wufoo_tutorial_003" width="560" height="371" class="aligncenter size-full wp-image-226" /></p><h3>Using Themes or creating a new one</h3><p>Our new form has already a default theme applied to it, but we can change it to compliment the colors of our own website. This is done in the <strong>Themes menu</strong>. Here you can change many options like colors, font-types and sizes, borders, shadows, and even upload your own logo or use your own CSS stylesheet. Wufoo also offers a <strong>Theme Gallery</strong>, where you can choose already created designs.</p><p>Once you finished with the theme, save it and apply it to your form in the Form Manager.<br /> <img src="http://www.epsil.nl/wp-content/uploads/wufoo_tutorial_004.png" alt="wufoo_tutorial_004" title="wufoo_tutorial_004" width="560" height="161" class="aligncenter size-full wp-image-228" /></p><h3>Using the Form in your site</h3><p>Now the last step is to gather the code you need to use the form in your own website, in the Form Manager choose the <strong>Code</strong> button, this will take you to a page with the many options that allow you to use your form (link, embed, full page, pop up, XHTML/CSS, etc.), normally I choose the second option &#8220;Embed Form Code&#8221; because I can just copy and paste the code inside my own pages, it uses an iFrame to gather the information from the Wufoo servers.<br /> <img src="http://www.epsil.nl/wp-content/uploads/wufoo_tutorial_005.png" alt="wufoo_tutorial_005" title="wufoo_tutorial_005" width="560" height="203" class="aligncenter size-full wp-image-229" /></p><h3>Managing Entries</h3><p>Now that we have a fully functioning form, people can start to use it. We will receive an e-mail notification every time that this happens, and with the Entries function, we can manage and view every single post. In the Form Manager click the &#8220;Entries&#8221; button under the Form name.<br /> <img src="http://www.epsil.nl/wp-content/uploads/wufoo_tutorial_006.png" alt="wufoo_tutorial_006" title="wufoo_tutorial_006" width="560" height="129" class="aligncenter size-full wp-image-230" /><br /> Every time you click in one of the entries, the form view appears and you can edit them, create new ones or make comments on them. If you have an address field, it will even show a map of that location, a very nice feature.</p><h3>Statistics and Reports</h3><p>Wufoo provides a very nice statistics view for every form (accessed via the &#8220;Statistics&#8221; button in the Form Manager), so you can view the form use daily, weekly, monthly or by year.<br /> <img src="http://www.epsil.nl/wp-content/uploads/wufoo_tutorial_007.png" alt="wufoo_tutorial_007" title="wufoo_tutorial_007" width="560" height="136" class="aligncenter size-full wp-image-231" /><br /> It is also possible to create reports for every form, a full list of all entries (you can choose specific fields to be included if you want) and even add a nice Pie, Bar or Line Graph. All reports can be viewed online or exported to a file in Excel format, as TXT with tab separators or as a CSV file. This function is very useful, so take the extra time to create your own reports, mostly if you are expecting many responses.</p><h3>Benefits of using Wufoo</h3><ul class="plus"><li>You don&#8217;t need to know anything about HTML, PHP, cgi-scripts or AJAX to create a wonderful form.</li><li>It has a free plan and is priced reasonably compared to other services.</li><li>It is easy to use, fast and a lot of fun.</li><li>It integrates with your own website, using your own colors and design.</li><li>It looks beautiful and it has AJAX effects, like date pickers, help hovers and data checking.</li><li>It has a very nice UI, great Help and Documentation, and a large community.</li><li>W3C Valid XHTML and CSS</li><li>It degrades gracefully (Runs with or without JavaScript, CSS and Cookies)</li></ul><h3>Nothing is perfect &#8211; The negatives</h3><ul class="negative"><li>It is not free if you want more functions like file uploads, more users, SSL, payment integration, more forms, more submissions, more fields, etc.</li><li>Themes could be a little bit more configurable.</li><li>The free version only has 3 forms, 3 reports, 100 submissions per month and 10 fields per form, also you can&#8217;t use a 2 column layout.</li><li>You have to rely on their 24/7 up-time, and is not in your hands to solve any problems they could have.</li><li>Free version shows a powered by Wufoo link and a logo after submitting.</li></ul><h3>Other alternatives</h3><p>There are not many alternatives to this wonderful online service, at least not one that is so elegantly constructed and presented, or one that is so easy to use, but some of them are worthy competitors, and you should at least take a quick look at them:</p><ul><li><a href="http://www.formspring.com/"><img src="http://www.epsil.nl/wp-content/uploads/formspring-logo.jpg" alt="formspring-logo" title="formspring-logo" width="186" height="80" class="alignright size-full wp-image-222 clearfix" /></a>A very similar service is <a href="http://www.formspring.com/">FormSpring</a>, it has almost the same functionality and options, the same ease of use and it generates nice and clean code, <del datetime="2009-02-09T15:42:16+00:00">you can&#8217;t use templates thought</del> you can&#8217;t use templates in the free version, but the free services are almost exactly the same as Wuffo, and the basic one has even the same price. It is worth mentioning that I like the usability of the website a lot, almost as good as Wuffo itself.</li><li><a href="http://www.formassembly.com/"><img src="http://www.epsil.nl/wp-content/uploads/formassembly-logo.png" alt="formassembly-logo" title="formassembly-logo" width="276" height="66" class="alignright size-full wp-image-216 clearfix" /></a>Another online service that deserves a mention is <a href="http://www.formassembly.com">FormAssembly</a>, being very similar to Wufoo in many regards, but not so customizable and with different plans. The free one gets you unlimited forms, reports, charts and notifications, but it lacks advanced features like file uploads, export to different formats (no Excel), etc. But still, both services are good, and you should weight their pluses and negatives, choosing the one that best fit you.</li><li><a href="http://docs.google.com/"><img src="http://www.epsil.nl/wp-content/uploads/docsslogo.gif" alt="docsslogo" title="docsslogo" width="150" height="65" class="alignright size-full wp-image-217 clearfix" /></a>Another alternative is <a href="http://docs.google.com/">GoogleDocs</a>, that allows to create forms and embed them to your pages, this option is a very simple solution, that works fine, but it doesn&#8217;t have any extra functions like AJAX, themes or advanced fields, but in reality, it will be more than useful and enough for most users. It is free and it doesn&#8217;t have any restrictions.</li><li><a href="http://creator.zoho.com/"><img src="http://www.epsil.nl/wp-content/uploads/zohocreator_logo.gif" alt="zohocreator_logo" title="zohocreator_logo" width="241" height="49" class="alignright size-full wp-image-221 clearfix" /></a><a href="http://creator.zoho.com/">ZohoCreator</a> is also a very good alternative, but much more complex as is not only related to forms, but to full database applications. Also I don&#8217;t like the code that it generates, it uses a lot of tables and is not clean. The other drawback is that the free plan is only for personal use.<br /> Still, it is a very nice tool if you give it some time and learn it.</li></ul><h3>Even more alternatives (not yet tested by us)</h3><ul><li><a href="http://www.formlogix.com/">FormLogix</a></li><li><a href="http://www.theblueform.com">TheBlueForm</a></li><li><a href="http://www.appnitro.com/">Appnitro MachForm</a></li><li><a href="http://www.flovv.com/">FLOVV</a> (Free Online Multipage Form Builder)</li><li><a href="http://www.surveygizmo.com/">Survey Gizmo</a></li><li><a href="http://www.wyaworks.com/">WyaWorks</a></li><li><a href="http://www.jotform.com/">JotForm</a></li><li><a href="http://www.perfectforms.com/">Perfect Forms</a></li></ul><h3>Conclusions</h3><p>We designers, and mostly freelancers, tend to be in the cheap side, and will try to get by without using a single penny.</p><p>Our views are based on the FREE versions of every one service, as you could guess, almost all of them also have more powerful paid versions, in this case, you should compare yourself their plans to see what you get for your money. The memorable quote &#8220;you get what you pay for&#8221; is very true in this case.<br /> If you have a small website and need a form, any of these services will make your life easier, and speed up your work flow, so don&#8217;t hesitate to take some time to review them and to try them out, you won&#8217;t regret it.</p><p><strong>Wufoo</strong> gets our top vote, as you could read throwout this post, its ease of use, great design and fun work flow is unbeatable. But in reality, any of the alternatives will do just fine. If you could just get by using <strong>Google Docs</strong>, please do, it is totally free and it works perfectly, it doesn&#8217;t have some advanced features, but you don&#8217;t have any limitations like the rest.</p><p>If you can live with just a few forms, a few submissions per month and you don&#8217;t need that many fields, Wufoo and FormSpring are the winners.</p><p>Are you creating more serious websites and you care about your clients, consider a paid plan.</p><p>Of course, if you have all the time in the world, keep coding everything by hand, no service beats that freedom.</p> ]]></content:encoded> <wfw:commentRss>http://www.epsil.nl/2009/02/wufoo-form-builder-easy-online-data-gathering/feed/</wfw:commentRss> <slash:comments>6</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)

Served from: www.epsil.nl @ 2012-02-04 05:02:55 -->
