<?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>Webmaster-Source &#187; forms</title>
	<atom:link href="https://www.webmaster-source.com/tag/forms/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.webmaster-source.com</link>
	<description>Useful Resources For Webmasters</description>
	<lastBuildDate>Thu, 24 Aug 2017 02:01:18 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.42</generator>
	<item>
		<title>Gravity Forms</title>
		<link>https://www.webmaster-source.com/2009/09/08/gravity-forms/</link>
		<comments>https://www.webmaster-source.com/2009/09/08/gravity-forms/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 11:14:55 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[premium]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=2532</guid>
		<description><![CDATA[There has been a lot of talk about a new WordPress plugin called Gravity Forms lately. It&#8217;s one of the first major premium WordPress plugins, costing $39 for a single-site license and $99 for multi-site. What does it do? It&#8217;s a bit like the ever-popular cForms plugin, but with a lot more polish, and plenty [&#8230;]]]></description>
				<content:encoded><![CDATA[<p style="text-align: center;"><a href="https://www.e-junkie.com/ecom/gb.php?cl=54585&amp;c=ib&amp;aff=17168"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-2533 imgborder" title="Gravity Forms" src="//www.webmaster-source.com/wp-content/uploads/gravity-forms.jpg" alt="Gravity Forms" width="600" height="159" /></a></p>
<p>There has been a lot of talk about a new WordPress plugin called <a href="http://www.gravityforms.com/">Gravity Forms</a> lately. It&#8217;s one of the first major premium WordPress plugins, costing $39 for a single-site license and $99 for multi-site.</p>
<p>What does it do? It&#8217;s a bit like the ever-popular cForms plugin, but with a lot more polish, and plenty more features. The interface is a breeze to use, letting you create new forms with ease. You just click a button to add a new form field, then you can adjust it live in the form preview.<span id="more-2532"></span></p>
<p style="text-align: center;"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-2534 imgborder" title="Gravity Forms Editor" src="//www.webmaster-source.com/wp-content/uploads/gravity-forms-editor.jpg" alt="Gravity Forms Editor" width="600" height="280" /></p>
<p>You can try a <a href="http://www.gravityforms.com/demo/">demo of the backend here</a>, though some features (such as saving) are disabled for security reasons.</p>
<p>It has a few unique features, such as form submissions being dumped into the database by default, with a convenient admin menu for reading and managing them. This would work well for a support form or survey, as you can read the postings right from within WordPress. It also offers the ability to create a form that would allow users to create new posts on a blog with your form.</p>
<p>Other nice additions like reCAPTCHA support and some hooks for other plugin developers to tie into are included as well.</p>
<p>Gravity Forms seems like a good plugin, though I haven&#8217;t purchased a copy myself. It&#8217;s nice to see a serious attempt at a large-scale premium plugin. I&#8217;ve been making plans to go in a similar direction myself in the future, though I won&#8217;t go into the details here. <img src="https://www.webmaster-source.com/wp-includes/images/smilies/icon_wink.gif" alt=";)" class="wp-smiley" /></p>
<p><strong>Affiliate Link:</strong> <a href="https://www.e-junkie.com/ecom/gb.php?cl=54585&amp;c=ib&amp;aff=17168">Gravity Forms</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2009/09/08/gravity-forms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Securing PHP Web Forms</title>
		<link>https://www.webmaster-source.com/2009/05/24/securing-php-web-forms/</link>
		<comments>https://www.webmaster-source.com/2009/05/24/securing-php-web-forms/#comments</comments>
		<pubDate>Sun, 24 May 2009 11:06:30 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[(x)html]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=2199</guid>
		<description><![CDATA[Chris Coyier has written an interesting article on securing form scripts. Serious Form Security talks about token matching, hack logging, and a few other useful techniques to apply to a form processing script. Token matching is definitely a trick worth learning, since it will do a lot to stop bots from submitting data through your [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Chris Coyier has written an interesting article on securing form scripts. <a href="http://css-tricks.com/serious-form-security/">Serious Form Security</a> talks about token matching, hack logging, and a few other useful techniques to apply to a form processing script. Token matching is definitely a trick worth learning, since it will do a lot to stop bots from submitting data through your form.</p>
<blockquote><p>The first thing that we are going to do is generate a “token”, essentially a secret code. This token is going to be part of our “session”, meaning it is stored server side. This token <strong>also</strong> is going to be applied as a hidden input on the form itself when it is first generated in the browser. That means this token exists <strong>both</strong> on the client side and the server side and we can match them when the form gets submitted and make sure they are the same.</p></blockquote>
<p>One of the best (worst?) ways to spam forms is to create a script that uses cURL to send POST requests to the URL listed in the form&#8217;s <code>action</code> attribute, with some spammy data in the POST fields. (Or malicious data intended to break your script&#8230;) By having a pseudo-random token generated like the article describes, it makes things a lot harder. cURL, whether from a command line or an automated script, isn&#8217;t going to be able to store the session data and send the token along with the form.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2009/05/24/securing-php-web-forms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simplify Your Search?</title>
		<link>https://www.webmaster-source.com/2008/01/08/simplify-your-search/</link>
		<comments>https://www.webmaster-source.com/2008/01/08/simplify-your-search/#comments</comments>
		<pubDate>Tue, 08 Jan 2008 13:12:48 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/2008/01/08/simplify-your-search/</guid>
		<description><![CDATA[Here&#8217;s something interesting to think about: Should you simplify the design of your search fields? Looking at various sites, like IMDB and Amazon, I&#8217;ve noticed that a lot of sites feature drop-down boxes allowing you to pick what areas of the site to search (in the case of Amazon, Books, DVD, Electronics, etc). Here are [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Here&#8217;s something interesting to think about: Should you simplify the design of your search fields? Looking at various sites, like IMDB and Amazon, I&#8217;ve noticed that a lot of sites feature drop-down boxes allowing you to pick what areas of the site to search (in the case of Amazon, Books, DVD, Electronics, etc). Here are a couple of examples:</p>
<p><img src="http://i7.tinypic.com/6k8cj60.jpg" alt="" width="500" height="20" /></p>
<p><img src="http://i3.tinypic.com/6xbt2lx.jpg" alt="" width="364" height="28" /></p>
<p>Then there are sites that move this feature to an &#8220;Advanced Search&#8221; page.</p>
<p>There are two arguments about this:</p>
<ol>
<li>It makes it easier to find things by offering more power up front.</li>
<li>It confuses people to have too many options.</li>
</ol>
<p>I kind of like having the extra functionality within reach when I&#8217;m searching, but that doesn&#8217;t mean everyone else does. However, I absolutely cannot stand sites that <em>force</em> you to make a selection, rather than having an &#8220;all&#8221; option. It&#8217;s not like it&#8217;s <em>difficult</em> to create a search system that can look in all areas at once.</p>
<p>What do you think? Is it better to have the dropdown, or not? Why? Of course it really depends on the website, and the audience.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2008/01/08/simplify-your-search/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/


Served from: www.webmaster-source.com @ 2026-06-08 22:53:51 by W3 Total Cache
-->