<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>html-form &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/html-form/</link>
	<description>Feed of posts on WordPress.com tagged "html-form"</description>
	<pubDate>Wed, 10 Feb 2010 11:58:59 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[CSS text-indent: An Excellent Trick To Style Your HTML Form]]></title>
<link>http://bluealta.wordpress.com/2010/02/05/css-text-indent-an-excellent-trick-to-style-your-html-form/</link>
<pubDate>Fri, 05 Feb 2010 20:35:24 +0000</pubDate>
<dc:creator>Jeff Cemer</dc:creator>
<guid>http://bluealta.wordpress.com/2010/02/05/css-text-indent-an-excellent-trick-to-style-your-html-form/</guid>
<description><![CDATA[Add some style to your HTML forms I ran across this article at AEXT Design Magazine yesterday and th]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><h1>Add some style to your HTML forms</h1>
<p>I ran across this article at <a href="http://aext.net/">AEXT Design Magazine</a> yesterday and thought I&#8217;d share it with you.</p>
<p><strong><a href="http://aext.net/2010/02/css-text-indent-style-your-html-form/">CSS text-indent: An Excellent Trick To Style Your HTML Form</a></strong></p>
<p>I never thought of using CSS text-indent with forms before.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[PHP $_POST Array Not Working]]></title>
<link>http://vertoda.wordpress.com/2010/02/04/php-_post-not-working/</link>
<pubDate>Thu, 04 Feb 2010 18:41:17 +0000</pubDate>
<dc:creator>martcon</dc:creator>
<guid>http://vertoda.wordpress.com/2010/02/04/php-_post-not-working/</guid>
<description><![CDATA[When using PHP, it is common for scripts to accept parameters from HTML forms. For example if we hav]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style="font-family:Times;color:#888888;">When using PHP, it is common for scripts to  accept parameters from HTML forms. For example if we have a HTML form as  follows:</span></p>
<p><span style="font-family:Times;color:#888888;"> &#60;form action=&#8221;process.php&#8221;  method=&#8221;post&#8221;&#62;</span></p>
<p><span style="font-family:Times;color:#888888;"> Name: &#60;input type=&#8221;text&#8221;  name=&#8221;the_name&#8221; /&#62;</span></p>
<p><span style="font-family:Times;color:#888888;"> Address: &#60;input type=&#8221;text&#8221;  name=&#8221;the_address&#8221; /&#62;</span></p>
<p><span style="font-family:Times;color:#888888;"> &#60;input type=&#8221;submit&#8221;  /&#62;</span></p>
<p><span style="font-family:Times;color:#888888;"> &#60;/form&#62;</span></p>
<p><span style="font-family:Times;color:#888888;">This is a simple HTML form that accepts a name  (called the_name) and address (called the_address).</span></p>
<p><span style="font-family:Times;color:#888888;">A simple PHP script could print out these  parameters as follows:</span></p>
<p><span style="font-family:Times;color:#888888;"> &#60;?php </span></p>
<p><span style="font-family:Times;color:#888888;"> echo  $_POST['the_name'].&#8221;&#60;br /&#62;&#8221;;<br />
echo  $_POST['the_address'].&#8221;&#60;br /&#62;&#8221;;</span></p>
<p><span style="font-family:Times;color:#888888;"> ?&#62;</span></p>
<p><span style="font-family:Times;color:#888888;">This will print out the name and address  passed from the HTML form to the PHP script. </span></p>
<p><span style="font-family:Times;color:#888888;">However, in certain cases this will not work  i.e. the script will print nothing. The workaround is to use the $_REQUEST  function which contains the contents of the $_GET, $_POST and $_COOKIE  functions. Generally, the problem is caused by a programmer error in the  HTML file e.g. the name of a form element is omitted. Also, it has been found  that if the Content-Type is empty or not recognised in the HTTP message then the  PHP $_POST array will be empty.</span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Simple PHP + MySQL form with radio button and dropdown list]]></title>
<link>http://ykyuen.wordpress.com/2009/11/29/simple-php-mysql-form-with-radio-button-and-dropdown-list/</link>
<pubDate>Sun, 29 Nov 2009 06:20:55 +0000</pubDate>
<dc:creator>ykyuen</dc:creator>
<guid>http://ykyuen.wordpress.com/2009/11/29/simple-php-mysql-form-with-radio-button-and-dropdown-list/</guid>
<description><![CDATA[First, create a MySQL database with the following table CREATE TABLE IF NOT EXISTS 'data' ( 'id' int]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>First, create a <font color="#0000FF">MySQL</font> database with the following table</p>
<pre class="brush: plain;">
CREATE TABLE IF NOT EXISTS 'data' (
  'id' int(10) unsigned NOT NULL,
  'english_name' varchar(50) collate utf8_unicode_ci NOT NULL,
  'tel_number' varchar(8) collate utf8_unicode_ci NOT NULL,
  'email_address' varchar(50) collate utf8_unicode_ci NOT NULL,
  'gender' varchar(1) collate utf8_unicode_ci NOT NULL,
  'age' varchar(10) collate utf8_unicode_ci NOT NULL,
  'region' varchar(10) collate utf8_unicode_ci NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
</pre>
<p>Prepare a <font color="#FF0000">update.php</font> for the <font color="#0000FF">MySQL</font> connection.</p>
<pre class="brush: php;">
&#60;?php
	$english_name = $_POST['EnglishName'];
	$tel_number = $_POST['TelNumber'];
	$email_address = $_POST['EmailAddress'];
	$gender = $_POST['Gender'];
	$age = $_POST['Age'];
	$region = $_POST['Region'];

	mysql_connect(&#34;[mysql_server]&#34;, &#34;[username]&#34;, &#34;[password]&#34;) or die ('Error: ' . mysql_error());
	mysql_select_db(&#34;[database_name]&#34;);

	$query=&#34;INSERT INTO data (english_name, tel_number, email_address, gender, age, region) VALUES (&#34;;
	$query.=&#34;'&#34;.$english_name.&#34;', &#34;;
	$query.=&#34;'&#34;.$tel_number.&#34;', &#34;;
	$query.=&#34;'&#34;.$email_address.&#34;', &#34;;
	$query.=&#34;'&#34;.$gender.&#34;', &#34;;
	$query.=&#34;'&#34;.$age.&#34;', &#34;;
	$query.=&#34;'&#34;.$region.&#34;')&#34;;

	mysql_query($query) or die ('Error updating database');

	echo &#34;Record is inserted.&#34;;
?&#62;
</pre>
<p>Prepare the <font color="#FF0000">form.php</font></p>
<pre class="brush: php;">
&#60;html&#62;
&#60;head&#62;
	&#60;title&#62;Simple PHP Form&#60;/title&#62;
&#60;/head&#62;

&#60;body&#62;
	&#60;form method=&#34;post&#34; action=&#34;update.php&#34;&#62;
		&#60;table&#62;
			&#60;tr&#62;
				&#60;td&#62;English Name:&#60;/td&#62;
				&#60;td&#62;&#60;input type=&#34;text&#34; name=&#34;EnglishName&#34; size=&#34;50&#34; /&#62;&#60;/td&#62;
				&#60;td&#62;Tel Number:&#60;/td&#62;
				&#60;td&#62;&#60;input type=&#34;text&#34; name=&#34;TelNumber&#34; size=&#34;8&#34; /&#62;&#60;/td&#62;
			&#60;/tr&#62;
			&#60;tr&#62;
				&#60;td&#62;Email Address:&#60;/td&#62;
				&#60;td&#62;&#60;input type=&#34;text&#34; name=&#34;EmailAddress&#34; size=&#34;50&#34; /&#62;&#60;/td&#62;
				&#60;td&#62;Gender:&#60;/td&#62;
				&#60;td&#62;&#60;input type=&#34;radio&#34; name=&#34;Gender&#34; value=&#34;M&#34; checked=&#34;checked&#34; /&#62;M&#60;input type=&#34;radio&#34; name=&#34;Gender&#34; value=&#34;F&#34; /&#62;F&#60;/td&#62;
			&#60;/tr&#62;
			&#60;tr&#62;
				&#60;td&#62;Age:&#60;/td&#62;
				&#60;td colspan=&#34;3&#34;&#62;
					&#60;input type=&#34;radio&#34; name=&#34;Age&#34; value=&#34;Under 18&#34; checked=&#34;checked&#34; /&#62;Under 18
					&#60;input type=&#34;radio&#34; name=&#34;Age&#34; value=&#34;18-23&#34; /&#62;18-23
					&#60;input type=&#34;radio&#34; name=&#34;Age&#34; value=&#34;24-30&#34; /&#62;24-30
					&#60;input type=&#34;radio&#34; name=&#34;Age&#34; value=&#34;31-40&#34; /&#62;31-40
					&#60;input type=&#34;radio&#34; name=&#34;Age&#34; value=&#34;Over 40&#34; /&#62;Over 40
				&#60;/td&#62;
			&#60;/tr&#62;
			&#60;tr&#62;
				&#60;td&#62;Region:&#60;/td&#62;
				&#60;td&#62;
					&#60;select name=&#34;Region&#34;&#62;
						&#60;option value=&#34;N/A&#34;&#62;N/A&#60;/option&#62;
						&#60;option value=&#34;HK&#34;&#62;Hong Kong&#60;/option&#62;
						&#60;option value=&#34;KLN&#34;&#62;Kowloon&#60;/option&#62;
					&#60;/select&#62;
				&#60;/td&#62;
			&#60;/tr&#62;
			&#60;tr&#62;
				&#60;td colspan=&#34;4&#34;&#62;&#60;input type=&#34;Submit&#34; value=&#34;Submit&#34; /&#62;&#60;/td&#62;
			&#60;/tr&#62;
		&#60;/table&#62;
	&#60;/form&#62;
&#60;/body&#62;

&#60;/html&#62;
</pre>
<p>Done =)</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[HTML Form Hazırlama (eposta gönder)]]></title>
<link>http://phpci.wordpress.com/2009/11/09/html-form-hazirlama/</link>
<pubDate>Mon, 09 Nov 2009 00:39:04 +0000</pubDate>
<dc:creator>PHP'ci</dc:creator>
<guid>http://phpci.wordpress.com/2009/11/09/html-form-hazirlama/</guid>
<description><![CDATA[Basit düzeyde bir HTML formu ve formdan alınan verileri eposta atacak bir PHP sayfası nasıl hazırlan]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignleft size-thumbnail wp-image-111" title="cssform-resim" src="http://phpci.wordpress.com/files/2009/11/cssform-resim.jpg?w=150" alt="cssform-resim" width="150" height="98" /> Basit düzeyde bir HTML formu ve formdan alınan verileri eposta atacak bir PHP sayfası nasıl hazırlanır?</p>
<p><!--more-->Öncelikle içerisinde formu bulunduracak olan HTML sayfasını hazırlayalım.</p>
<p style="text-align:center;">
<p style="text-align:left;">ÖRNEK KOD [iletisim.html]</p>
<blockquote>
<p style="text-align:left;">&#60;form id=&#8221;form1&#8243; name=&#8221;form1&#8243; method=&#8221;post&#8221; action=&#8221;<span style="color:#ff0000;">iletisim.php</span>&#8220;&#62;<br />
&#60;table width=&#8221;455&#8243; border=&#8221;1&#8243;&#62;<br />
&#60;tr&#62;<br />
&#60;td width=&#8221;242&#8243;&#62;&#60;div align=&#8221;right&#8221;&#62;Adiniz Soyadiniz :&#60;/div&#62;&#60;/td&#62;<br />
&#60;td width=&#8221;197&#8243;&#62;<br />
&#60;label&#62;<br />
&#60;input type=&#8221;text&#8221; name=&#8221;isim&#8221; id=&#8221;textfield&#8221; /&#62;<br />
&#60;/label&#62; &#60;/td&#62;<br />
&#60;/tr&#62;<br />
&#60;tr&#62;<br />
&#60;td&#62;&#60;div align=&#8221;right&#8221;&#62;E-posta adresiniz:&#60;/div&#62;&#60;/td&#62;<br />
&#60;td&#62;<br />
&#60;label&#62;<br />
&#60;input type=&#8221;text&#8221; name=&#8221;eposta&#8221; id=&#8221;textfield2&#8243; /&#62;<br />
&#60;/label&#62; &#60;/td&#62;<br />
&#60;/tr&#62;<br />
&#60;tr&#62;<br />
&#60;td&#62;&#60;div align=&#8221;right&#8221;&#62;Konu:&#60;/div&#62;&#60;/td&#62;<br />
&#60;td&#62;<br />
&#60;label&#62;<br />
&#60;input type=&#8221;text&#8221; name=&#8221;konu&#8221; id=&#8221;textfield3&#8243; /&#62;<br />
&#60;/label&#62; &#60;/td&#62;<br />
&#60;/tr&#62;<br />
&#60;tr&#62;<br />
&#60;td&#62;&#60;div align=&#8221;right&#8221;&#62;Mesaj:&#60;/div&#62;&#60;/td&#62;<br />
&#60;td&#62;&#60;label&#62;<br />
&#60;textarea name=&#8221;mesaj&#8221; cols=&#8221;30&#8243; rows=&#8221;5&#8243;&#62;&#60;/textarea&#62;<br />
&#60;/label&#62;&#60;/td&#62;<br />
&#60;/tr&#62;<br />
&#60;tr&#62;<br />
&#60;td&#62;&#60;div align=&#8221;right&#8221;&#62;&#60;/div&#62;&#60;/td&#62;<br />
&#60;td&#62;&#60;label&#62;<br />
&#60;input type=&#8221;submit&#8221; name=&#8221;button&#8221; id=&#8221;button&#8221; value=&#8221;Gönder &#8221; /&#62;<br />
&#60;/label&#62;&#60;/td&#62;<br />
&#60;/tr&#62;<br />
&#60;/table&#62;<br />
&#60;/form&#62;</p>
</blockquote>
<p style="text-align:center;"><strong><br />
</strong></p>
<p><img class="aligncenter size-full wp-image-110" title="html-email-form-1" src="http://phpci.wordpress.com/files/2009/11/html-email-form-1.jpg" alt="html-email-form-1" width="400" height="300" /></p>
<p style="padding-left:30px;">
<p>Daha sonra da formdan gönderilerin verileri alıp, alınan verileri istediğimiz eposta adresine yollayacak olan PHP sayfasını oluşturalım.</p>
<p>ÖRNEK KOD [<span style="color:#ff0000;">iletisim.php</span>]</p>
<blockquote><p>&#60;?php<br />
$to = &#8220;<strong><span style="color:#000000;">eposta adresim</span><span style="color:red;"> </span></strong>&#8220;;<br />
$subject = &#8220;Iletisim Formu&#8221;;</p>
<p>$headers = &#8220;From:&#8221; . $_POST["isim"];<br />
$headers .= &#8220;&#60;&#8221; . $_POST["eposta"] . &#8220;&#62;\r\n&#8221;;<br />
$headers .= &#8220;Reply-To: &#8221; . $_POST["eposta"] . &#8220;\r\n&#8221;;<br />
$headers .= &#8220;Return-Path: &#8221; . $_POST["eposta"];</p>
<p>$message .= &#8220;Sitenizden gelen iletisim form islem sonucu\n\n&#8221;;<br />
$message .= &#8220;Adi soyadi: &#8221; . $_POST["isim"] . &#8220;\r\n&#8221;;<br />
$message .= &#8220;Email: &#8221; . $_POST["eposta"] . &#8220;\r\n&#8221;;<br />
$message .= &#8220;Konu: &#8221; . $_POST["konu"] . &#8220;\r\n&#8221;;<br />
$message .= &#8220;mesaj: &#8221; . $_POST["mesaj"] . &#8220;\r\n&#8221;;</p>
<p>$mail_kontrol=mail($to, $subject, $message, $headers);</p>
<p>if ($mail_kontrol) {echo &#8220;Yollama başarılı&#8221;;}<br />
else {echo &#8220;Mesaj Yollama hatası&#8221;;}<br />
?&#62;</p></blockquote>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[The best online storage way]]></title>
<link>http://mytaskhelper.wordpress.com/2009/10/28/the-best-online-storage-way/</link>
<pubDate>Wed, 28 Oct 2009 08:20:28 +0000</pubDate>
<dc:creator>mytaskhelper</dc:creator>
<guid>http://mytaskhelper.wordpress.com/2009/10/28/the-best-online-storage-way/</guid>
<description><![CDATA[This post has moved, please Go To My Task Helper New Blog]]></description>
<content:encoded><![CDATA[This post has moved, please Go To My Task Helper New Blog]]></content:encoded>
</item>
<item>
<title><![CDATA[Hidden Complexities [part 1]]]></title>
<link>http://2009summer.wordpress.com/2009/04/28/hidden-complexities-part-1/</link>
<pubDate>Tue, 28 Apr 2009 03:47:43 +0000</pubDate>
<dc:creator>peterpotter</dc:creator>
<guid>http://2009summer.wordpress.com/2009/04/28/hidden-complexities-part-1/</guid>
<description><![CDATA[Just yesterday, I finished the new module assigned to me last week. Below is the first part of Hidde]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div style="border:1px solid #ffcc00;background-color:#fff4c8;color:#77756a;font-family:arial,helvetica,sans-serif;font-size:11px;margin-left:60px;margin-top:15px;vertical-align:top;width:250px;padding:7px;">Just yesterday, I finished the new module assigned to me last week. Below is the first part of <strong>Hidden Complexities: things I faced while developing the </strong><strong>User Account Management module</strong>.        Hope you get something out of it.</div>
<p>Creating the <strong>User Account Management module</strong> wasn&#8217;t as easy as it first seemed. You would get deceived because of its striking simplicity: it has only one page and it is plain <a href="http://www.w3schools.com/html/DEFAULT.asp">HTML</a> and <a href="http://www.php.net">PHP</a>, no <a href="http://javascript.internet.com">Javascript</a> or <a href="http://www.w3schools.com/Ajax/Default.Asp">AJAX</a>. I was wrong.</p>
<p><!--more--></p>
<p>There was no special scripting alright, but the behavior of this one page was different from other modules I have created before. Initially, upon visiting the page, a text box and a button should appear. This is where you type the account name or the login name of the user(Picture 1).</p>
<div id="attachment_1282" class="wp-caption alignnone" style="width: 430px"><img class="size-full wp-image-1282" title="uam" src="http://2009summer.wordpress.com/files/2009/04/uam.jpeg" alt="Picture 1" width="420" height="261" /><p class="wp-caption-text">Picture 1</p></div>
<p>It should catch the instance when an input account name does not exist(Pictures 2 and 3).</p>
<div id="attachment_1289" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-1289" title="nonexistentuser1" src="http://2009summer.wordpress.com/files/2009/04/nonexistentuser1.jpeg?w=300" alt="Picture 2" width="300" height="124" /><p class="wp-caption-text">Picture 2</p></div>
<div id="attachment_1295" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-1295" title="nonexistentuser_warning1" src="http://2009summer.wordpress.com/files/2009/04/nonexistentuser_warning1.jpeg?w=300" alt="Picture 3" width="300" height="125" /><p class="wp-caption-text">Picture 3</p></div>
<p>When an existing account name is entered, the information for the account should appear below it(Picture 4).</p>
<div id="attachment_1296" class="wp-caption alignnone" style="width: 430px"><img class="size-full wp-image-1296" title="existing_user" src="http://2009summer.wordpress.com/files/2009/04/existing_user.jpeg" alt="Picture 4" width="420" height="321" /><p class="wp-caption-text">Picture 4</p></div>
<p>Now, it isn&#8217;t much of a trouble, really, to display more elements on a single page after clicking a <a href="http://www.echoecho.com/htmlforms12.htm">submit button</a>. The trouble is, the added portion of the page contains a submit button itself and also, the input portion above must still function properly even with the added display.</p>
<p>We&#8217;ll have to go technical to see the real misery of the situation. To determine whether or not to display added information   on the page, I put a condition in the view: <em>if the controller passes an account (with the required information), display the account information, otherwise, don&#8217;t. </em>The next scenario is the harder part. If you click &#8216;<strong>Load User Info</strong>&#8216;, it should display the account info if the account exists. If you click &#8216;<strong>Update</strong>&#8216;, it should save the checked modules to the account. Problem is, how will the controller know what to do when a submit button is clicked? The thing about <a href="http://www.echoecho.com/htmlforms12.htm">submit buttons</a> is that you can only specify where it redirects through the <a href="http://htmlhelp.com/reference/wilbur/block/form.html">action attribute</a> of the <a href="http://www.w3.org/TR/html401/interact/forms.html">form</a> where it belongs. Thus, if two submits belong to the same form, they go to the same page and there&#8217;s no elegant way to know which button is pressed (or so I think).</p>
<p>One work around, which I deem unelegant, would be to use <a href="http://javascript.internet.com">Javascript</a> to change a <a href="http://www.codeave.com/HTML/code.asp?u_log=5019">hidden input</a> when either of the buttons are pressed. The buttons would give different values to the hidden input, let&#8217;s say &#8216;L&#8217; when the &#8216;<strong>Load User Info</strong>&#8216; button is pressed and &#8216;U&#8217; when the other is clicked. The controller would then determine which was pressed by checking the value of the hidden input.</p>
<p>A better solution (a no-Javascript one) is to place the submit buttons in separate <a href="http://htmlhelp.com/reference/wilbur/block/form.html">forms</a>. The different values of &#8216;action&#8217; of the forms would now distinguish which button is pressed. For the &#8216;<strong>Load User Info</strong>&#8216; button, I had it pass &#8216;LOAD&#8217; to the controller; for the &#8216;<strong>Update</strong>&#8216; button, I had it pass &#8216;UPDATE&#8217;. Now, the controller knows which button was pressed through the value of the parameter it receives. More elegant, don&#8217;t you think?</p>
<p>Actually, this would not have been a dilemma if, after clicking the &#8216;<strong>Load User Info</strong>&#8216; button, the information is displayed on a different page (do you see why?). Then, we could put a link to the account-name-input page so that the user could enter another account name. But then again, the specs must be followed, as we know <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So, the multiple submit-buttons-with-different-functions -all-on-one-page problem is solved. As it turned out though, the controller took much more thinking to appear elegant&#8230;.</p>
<p>[part 2: Arranging code in the controller such that the two forms function properly, and still remains elegant]</p>
<p>~Peter <img src="http://www.getsmileyface.com/new/cute/19.gif" alt="" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[an email form - tell a friend ]]></title>
<link>http://formlogix.wordpress.com/2008/11/16/an-email-form-tell-a-friend/</link>
<pubDate>Sun, 16 Nov 2008 07:34:38 +0000</pubDate>
<dc:creator>form1</dc:creator>
<guid>http://formlogix.wordpress.com/2008/11/16/an-email-form-tell-a-friend/</guid>
<description><![CDATA[an email &#8220;tell a friend&#8221; form is used frequently nowadays, for recommending sites and pr]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>an email &#8220;tell a friend&#8221; form is used frequently nowadays, for recommending sites and products via emails. it is a ctually an <a href="http://emailformbuilder.wordpress.com/2008/10/26/creating-an-auto-respond-for-an-email-form/">auto response email form</a>.<br />
once you enter a site you like you can use its &#8220;tell a friend&#8221; email form by entering your friend&#8217;s email address and sending him a small message. the site&#8217;s url is of course sent along with these details.<br />
creating a &#8220;tell a friend&#8221; form using an email form builder is easy.  all you actually need in the form is some text that explains what this form is about, an email element so the form filler can enter the friend&#8217;s email address and a submit button to send the data of the form.<br />
steps to create such a form with a <a href="http://www.formlogix.com">form builder</a>:<br />
Steps to create a &#8220;tell a friend&#8221; form :<br />
1) Enter the form creator.<br />
2) Drag a Label element in to the design area and enter text explaining what the form is about. For example: Please enter your friends email address in order to recommend this site to him/her.<br />
3) Drag another Label element and enter the text &#8220;Friends email address&#8221;.<br />
4) Drag an Email element, place it next to the label and go to its element settings.<br />
5) Enter the text &#8220;Friends email address&#8221; in the element &#8220;caption&#8221; field.<br />
6) Make sure that it&#8217;s defined as mandatory and that its &#8220;Send Copy&#8221; checkbox is turned on. This checkbox is in charge of sending an email to the address entered by a user in the email element.<br />
7) Go to the &#8220;Form Settings&#8221; and fill in a message in the &#8220;Email User Message&#8221; field. This message will appear at the beginning of the email sent to friends.<br />
Make sure you use [n] when you want to create a line break. For example: Hi,[n]I wanted to tell you about this great site i found[n]Its called FormLogix.<br />
 <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> Add a submit button.<br />
9) Save the form. </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[There is hope yet!]]></title>
<link>http://jpiemeisl.wordpress.com/2008/07/17/there-is-hope-yet/</link>
<pubDate>Wed, 16 Jul 2008 20:42:23 +0000</pubDate>
<dc:creator>jpiemeisl</dc:creator>
<guid>http://jpiemeisl.wordpress.com/2008/07/17/there-is-hope-yet/</guid>
<description><![CDATA[I switched over my mailing address today and stumbled upon something that inspired hope for the inte]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I switched over my mailing address today and stumbled upon something that inspired hope for the inter-webs.</p>
<p><img src="http://www.jpiemeisl.com/storage/usps_form.jpg" alt="USPS form" /></p>
<p>It&#8217;s brilliantly designed and it&#8217;s effortless to navigate. Unfortunately it&#8217;s use wasn&#8217;t successful, my billing address differed from my current address. I assumed they would have thought that one out. Oh well, at least the form was sweet.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Googlebot becomes Spambot]]></title>
<link>http://broddlit.wordpress.com/2008/04/16/googlebot-becomes-spambot/</link>
<pubDate>Wed, 16 Apr 2008 10:05:27 +0000</pubDate>
<dc:creator>Olli</dc:creator>
<guid>http://broddlit.wordpress.com/2008/04/16/googlebot-becomes-spambot/</guid>
<description><![CDATA[Google seems to go one step too far. So they fill out forms with random words on websites and submit]]></description>
<content:encoded><![CDATA[Google seems to go one step too far. So they fill out forms with random words on websites and submit]]></content:encoded>
</item>
<item>
<title><![CDATA[DYI with a form builder - create your online web forms easily]]></title>
<link>http://formlogix.wordpress.com/2007/06/06/dyi-with-a-form-builder-create-your-online-web-forms-easily/</link>
<pubDate>Wed, 06 Jun 2007 06:57:57 +0000</pubDate>
<dc:creator>form1</dc:creator>
<guid>http://formlogix.wordpress.com/2007/06/06/dyi-with-a-form-builder-create-your-online-web-forms-easily/</guid>
<description><![CDATA[if you are a blogger or simply own a web site you are aware of the fact that the best way of interac]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>if you are a blogger or simply own a web site you are aware of the fact that the best way of interacting with your users is through<br />
web based forms (AKA online form).<br />
adding a web form into your web site or blog is not an easy task, its time consuming and its  requires a technical involment.<br />
you will have to meet with a web developer, explain to him what you need, and when ever you will need to change something in this web form you will have to ask him to change it.<br />
you will also need a database storage and some reports, thats cost money!<br />
thats why i came with this idea, create a highly flexible form builde , untill now building web forms is not easy as it should be!<br />
from now, anyone that got basic computer skills (drag and drop..) will be able to build web form, using the form builder will not just shortern your time to market but will also save you money&#8230;<br />
i will be happy if you guys will check out my form builder  and send me your feedbacks,<br />
FormLogix <a href="http://www.formlogix.com">Form Builder</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Styling Form Submit Buttons]]></title>
<link>http://webdoodles.wordpress.com/2007/05/15/styling-form-submit-buttons/</link>
<pubDate>Tue, 15 May 2007 16:13:47 +0000</pubDate>
<dc:creator>ukmagician</dc:creator>
<guid>http://webdoodles.wordpress.com/2007/05/15/styling-form-submit-buttons/</guid>
<description><![CDATA[The default form submit button looks ugly on almost any website. Wouldn&#8217;t it be nice to be abl]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>The default form submit button looks ugly on almost any website. Wouldn&#8217;t it be nice to be able to style it to fit in with your design?</p>
<p>Even better, how about adding a hover effect to make it clear that clicking on it does something?</p>
<p>After a bit of searching, I&#8217;ve found the solution at <a href="http://www.digital-web.com/articles/push_my_button/">www.digital-web.com</a> &#8211; using the &#60;button&#62; tag. With the addition of some javascript to cope with IE&#8217;s lack of support for the :hover pseudo class, you can even have hover effects.</p>
<p>Check out the excellent <a href="http://www.digital-web.com/extras/push_my_button/example_1/index.html">virtual Christmas card example</a> at digital-web.com to see how far you can go with this.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Contact Options]]></title>
<link>http://webdoodles.wordpress.com/2007/05/01/contact-options/</link>
<pubDate>Tue, 01 May 2007 09:40:49 +0000</pubDate>
<dc:creator>ukmagician</dc:creator>
<guid>http://webdoodles.wordpress.com/2007/05/01/contact-options/</guid>
<description><![CDATA[A lot of businesses on the web seem to make it hard for people to contact them, sometimes unintentio]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>A lot of businesses on the web seem to make it hard for people to contact them, sometimes unintentionally, sometimes in an effort to combat spam.</p>
<p>They make the user use a contact form on their website, which can be over complicated or require information that a casual enquirer doesn&#8217;t want to give. Email addresses are obscured in an effort to confuse email harvesters and succeed in confusing users as well. Or contact information is just too hard to find.</p>
<p>In my opinion, if you are selling a product or service that requires people to get in contact with you, you need to provide every opportunity for them to do so and not hinder them in any way. Provide a phone number, email address and enquiry form. Any anti spam measures you need to take should happen in the background.</p>
<p>A lot of web developers and web designers (professional and amateur alike) forget that not everyone is as web savvy as them, not everyone is great at typing or filling in forms, or has any idea why you might want to protect yourself from &#8217;spam&#8217; (tinned processed meat?). Some people may think that their enquiry is so unique a website form just can&#8217;t handle it and will want a simple email address, or they may just want to find a phone number and speak to someone.</p>
<p>Make the most of all the hard work involved in getting users to your site and make it easy to convert them.</p>
<p>So here are a couple of ideas. Don&#8217;t write email addresses in a none-email format. If you must do something, make the email address an image and encrypt the mailto: link. (And beef up your server side spam protection and the filters in your email client).</p>
<p>Have a form for casual enquiries (e.g. with name, email and message fields) and a more detailed form for more serious users (maybe linked from a product detail page) &#8211; call it an order form. Protect these forms from spam bots with server side scripting, or dummy form fields.</p>
<p>And finally, how about providing a single field form where users can type in their email or phone number, and send it to you so <em>you can contact them</em>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Spam Update]]></title>
<link>http://webdoodles.wordpress.com/2007/04/24/spam-update/</link>
<pubDate>Tue, 24 Apr 2007 08:35:50 +0000</pubDate>
<dc:creator>ukmagician</dc:creator>
<guid>http://webdoodles.wordpress.com/2007/04/24/spam-update/</guid>
<description><![CDATA[The anti form spam measure I outlined in my previous post seems to have worked. After a day or so I ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>The anti form spam measure I outlined in my <a href="http://webdoodles.wordpress.com/2007/03/22/combating-spam-without-captchas-and-php/" title="anti spam measures">previous post</a> seems to have worked.</p>
<p>After a day or so I was down from 10+ spam emails a day to only one or two.</p>
<p>Strangely, they were of a similar format (similar gobbldy gook in the submitted fields)  to the ones that used to clog up my inbox. Which suggests they were automated?</p>
<p>Anyway, happily they now seem to have tailed off completely.</p>
<p>So all is well until a more advanced spam bot comes along and can beat this anti spam method.</p>
<p>However, there is scope to change the <a href=", and now they seem to have tailed off completely.">method I described</a> because there is always more than one way to achieve the same result using CSS, for example different methods to hide the fake fields.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[who needs for an online web forms builder ?]]></title>
<link>http://formlogix.wordpress.com/2007/04/11/who-needs-for-an-online-web-forms-builder/</link>
<pubDate>Wed, 11 Apr 2007 05:42:34 +0000</pubDate>
<dc:creator>form1</dc:creator>
<guid>http://formlogix.wordpress.com/2007/04/11/who-needs-for-an-online-web-forms-builder/</guid>
<description><![CDATA[online web forms builder is a tool that generates online web forms. if you are a blogger or a web si]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>online web forms builder </strong>is a tool that generates online web forms.<br />
if you are a blogger or a web site owner you must be needing for at least 1 web form.<br />
the issue with web forms that they are hard to build, you will need a programming knowledge, databases or an expensive programmer.<br />
FormLogix form builder is a WYSIWYG web database tool, simply drag and drop fields and you will get a fully functional system.</p>
<p>using FormLogix online forms builder you will be able to create your wildest forms without any coding skills,</p>
<p>learn more:<br />
<a href="http://www.formlogix.com">form builder</a><br />
<a href="http://www.formlogix.com/Help/Glossary/Online-Form.aspx">online web forms</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Combating Spam Without Captchas and PHP]]></title>
<link>http://webdoodles.wordpress.com/2007/03/22/combating-spam-without-captchas-and-php/</link>
<pubDate>Thu, 22 Mar 2007 16:31:50 +0000</pubDate>
<dc:creator>ukmagician</dc:creator>
<guid>http://webdoodles.wordpress.com/2007/03/22/combating-spam-without-captchas-and-php/</guid>
<description><![CDATA[The contact form on my main site, www.dangifford.com was recently discovered by spam bots. Instead o]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>The contact form on my main site, www.dangifford.com was recently discovered by spam bots.</p>
<p>Instead of enquiries from people wanting me to perform magic, I have been bombarded with links to sites selling ringtones, watches and various pills and potions. So it was time to sort it out and put in some preventative measures.</p>
<p>Spam proofing a form is pretty straightforward in PHP. There are many free PHP contact form scripts that will add captchas and other anti-spam measures to your forms. Unfortunately, my site is static HTML on a basic hosting package with no PHP.  It uses the venerable FormMail CGI script from <a href="http://www.scriptarchive.com/formmail.html" title="Form Mail CGI Script">Matt&#8217;s Script Archive</a> to process forms.</p>
<p>I considered trying to add a captcha, a simple arithmetic or spelling question to ensure a human is using the form, and modifying the script to check the answer. However, my programming skills aren&#8217;t up to it (I&#8217;m just a messy hacker) and besides, I want to prevent spam, not make using my forms harder for genuine users.</p>
<p>So I&#8217;ve used a much simpler solution involving <strong>fake form fields</strong>. (See <a href="http://isc.sans.org/diary.html?storyid=1836">this article</a>)</p>
<p>Add a fake textarea field to the form, giving it an easily identifiable name such as &#8216;comments&#8217; or &#8216;message&#8217;. Rename the genuine field. For example change &#8216;comments&#8217; to &#8216;whattheysay&#8217;.</p>
<p>In the stylesheet for the page, create a class including the rule &#8216;display: none;&#8217; and apply it to the fake field.</p>
<p>Normal users will not be able to see, and therefore not be able to enter text into the fake field. But the spam bots will find it in the code and fill it with links to dodgy sites.</p>
<p>So, when the form is processed by the FormMail CGI script, it only needs to test for content in the fake field to determine if the message is spam.</p>
<p>Open up FormMail.cgi in a text editor and find the send_mail function. Enclose it in an if statement that checks whether the &#8216;comments&#8217; fake field is empty. Here is the relevant code:</p>
<p><code>sub send_mail {</code></p>
<p><code>   # Only send email if spam trapping field is empty  #</code><br />
<code>   if ($Form{'comments'} eq '') {</code></p>
<p><code>      # ....rest of send_mail function.... #</code></p>
<p><code>   # closing bracket for spam if statement #</code><br />
<code>   }</code></p>
<p><code>}</code></p>
<p>That&#8217;s it!</p>
<p>In the spam emails I received, it was the textarea fields (named &#8216;comments&#8217;) that spammed, so that is the field I&#8217;ve faked. Other forms may have different fields that get filled with spam, but I suspect spam bots target textarea fields where they can add the most text.</p>
<p><strong>Problems/ room for improvement? </strong></p>
<p>I suppose spam bots might learn to detect fields hidden using this CSS technique, however there are other CSS tricks that can be used to hide the fake fields.</p>
<p>You could also do something other than just not sending the email. Maybe bounce it back to the spammer? I&#8217;m just happy not wasting my bandwidth downloading it.</p>
<p>People using alternative stylesheets (for accessibility reasons) will be able to see the fake field. For those users, add a note next to the field saying something like &#8216;This field is used to detect spammers &#8211; don&#8217;t write anything in it!&#8217;. Give it the same display none class as the fake field and it will disappear when viewed using the standard stylesheet.</p>
<p>No more spam so far&#8230;..</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Using Jump Menus]]></title>
<link>http://webdoodles.wordpress.com/2007/02/27/using-jump-menus/</link>
<pubDate>Tue, 27 Feb 2007 10:41:21 +0000</pubDate>
<dc:creator>ukmagician</dc:creator>
<guid>http://webdoodles.wordpress.com/2007/02/27/using-jump-menus/</guid>
<description><![CDATA[Jump menus are a compact way of providing a list of links to the user. You are presented with a drop]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Jump menus are a compact way of providing a list of links to the user. You are presented with a dropdown list where the items listed behave as links, you click on them and off you go to a new page.</p>
<p>These lists are often presented as &#8216;Quick Links&#8217; to highlight important pages in a site or as &#8216;Site Navigation&#8217; but you could present them in many other ways. On <a href="http://www.giffordplumbing.co.uk" title="Gifford Plumbing Services">Gifford Plumbing Services</a> (my brother&#8217;s site) I&#8217;ve used them to highlight the areas he covers.</p>
<p>The jump menu uses a HTML select form with a small bit of javascript.  Here is the HTML code:</p>
<p><code><br />
&#60;form name="JumpMenuForm"&#62;<br />
&#60;select name="JumpMenu" onchange="MM_jumpMenu('parent',this,0);MM_jumpMenu('parent',this,0)"&#62;<br />
&#60;option selected="selected"&#62;Select Link...&#60;/option&#62;<br />
</code><code>    </code><code> &#60;option value="Link1"&#62;Link 1&#60;/option&#62;<br />
</code><code>    </code><code> &#60;option value="Link2.htm"&#62;Link 2&#60;/option&#62;<br />
</code><code>    </code><code> &#60;option value="Link3.htm"&#62;Link 3&#60;/option&#62;<br />
</code><code>    </code><code> &#60;option value="Link4.htm"&#62;Link 4&#60;/option&#62;<br />
</code><code>    </code><code> &#60;option value="Link5.htm"&#62;Link 5&#60;/option&#62;<br />
&#60;/select&#62;<br />
&#60;/form&#62;<br />
</code></p>
<p>And the javascript:<br />
<code><br />
function MM_jumpMenu(targ,selObj,restore){ //v3.0<br />
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");<br />
if (restore) selObj.selectedIndex=0;<br />
}<br />
</code></p>
<p>If you use Dreamweaver, you can easily add the above code by going to Insert &#62; Form &#62; Jump menu. This allows you to add the list items and links and then inserts the HTML  code for the form).</p>
<p>Then go to the Behaviours panel and you should see &#8216;Jump Menu&#8217; listed. Select this, then click on the &#8216;Add behaviour&#8217; button and select &#8216;Jump Menu&#8217; from the list. This adds the javascript to the head of your document.</p>
<p>One problem is that I don&#8217;t think Jump Menus are search engine friendly &#8211; search engines such as Google can&#8217;t follow the links.  This is not a problem as long as you link to  the pages elsewhere in your site, i.e. your site map.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[create functional forms]]></title>
<link>http://formlogix.wordpress.com/2007/01/22/create-functional-forms/</link>
<pubDate>Mon, 22 Jan 2007 06:09:14 +0000</pubDate>
<dc:creator>form1</dc:creator>
<guid>http://formlogix.wordpress.com/2007/01/22/create-functional-forms/</guid>
<description><![CDATA[formlogix is a web platform that gives a non technical users to create functional forms. formlogix s]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>formlogix is a web platform that gives a non technical users to <strong>create functional forms</strong>.</p>
<p>formlogix solution is simple to use and highly flexible.</p>
<p>the tool is based on a powerfull WYSWYG form designer and its free of charge.</p>
<p>if you wish to learn more :<strong><a href="http://www.formlogix.com" title="create functional forms">create functional forms</a></strong></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[e-mail forms designer]]></title>
<link>http://formlogix.wordpress.com/2007/01/22/e-mail-forms-designer/</link>
<pubDate>Mon, 22 Jan 2007 04:57:52 +0000</pubDate>
<dc:creator>form1</dc:creator>
<guid>http://formlogix.wordpress.com/2007/01/22/e-mail-forms-designer/</guid>
<description><![CDATA[if you are looking for a &#8220;heavy weight&#8221; yet easy to use form design that will create ema]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>if you are looking for a &#8220;heavy weight&#8221; yet easy to use form design that will</p>
<p>create email forms(<strong>e-mail forms designer</strong>) then we can offer you a great tool,</p>
<p>formlogix is a WYSWYG <a href="http://www.formlogix.com/Help/Manual/FormCreationWorkArea.aspx" title="web forms designer">form designer</a>, its requires no special skills and no coding skills, the designer is based on drag and drop and mouse clicks.</p>
<p>the web form designer is highly flexible and <strong>FREE.</strong></p>
<p>lean more <strong><a href="http://www.formlogix.com" title="mail form designer">about e-mail forms designer</a></strong></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[free web form creator]]></title>
<link>http://formlogix.wordpress.com/2007/01/21/free-web-form-creator/</link>
<pubDate>Sun, 21 Jan 2007 20:09:28 +0000</pubDate>
<dc:creator>form1</dc:creator>
<guid>http://formlogix.wordpress.com/2007/01/21/free-web-form-creator/</guid>
<description><![CDATA[FormLogix is a free web form creator, using our tool you will be able to create amazing web forms wi]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>FormLogix is a <strong>free web form creator</strong>, using our tool you will be able to create amazing web forms</p>
<p>without wrting html,css,server side scripting and so on&#8230;absolutly 0 lines of code or skills are needed.</p>
<p>formlogix is a unique form creator tool, anyone can use it and it is only based on drag and drop skills.</p>
<p>our form creator tool is based on a flexible WYSWYG designer and you will be amaze what kind of free web forms you will be able to create.</p>
<p>learn more about  <strong><a href="http://www.formlogix.com/Help/Glossary/Form-Builder.aspx" title="form builder">free web form creator</a></strong></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[web form database]]></title>
<link>http://formlogix.wordpress.com/2007/01/21/web-form-database/</link>
<pubDate>Sun, 21 Jan 2007 20:04:33 +0000</pubDate>
<dc:creator>form1</dc:creator>
<guid>http://formlogix.wordpress.com/2007/01/21/web-form-database/</guid>
<description><![CDATA[ formlogix is web form database tool. using our tool anyone can build web databases and forms that b]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p> formlogix is <strong>web form database tool</strong>.</p>
<p>using our tool anyone can build web databases and forms that binds to database.</p>
<p>using formlogix the database layer is being generated automatically and its requires no coding skills, no database design skills and its a simple task of drag and drop.</p>
<p>formlogix tool is highly sophisticated and easy to use.</p>
<p>learn more about  <strong><a href="http://www.formlogix.com" title="web databases">web form database</a></strong></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[html form to email]]></title>
<link>http://formlogix.wordpress.com/2007/01/21/html-form-to-email/</link>
<pubDate>Sun, 21 Jan 2007 19:59:24 +0000</pubDate>
<dc:creator>form1</dc:creator>
<guid>http://formlogix.wordpress.com/2007/01/21/html-form-to-email/</guid>
<description><![CDATA[Formlogix is a web tool that create email forms, using the formlogix tool any one can build html for]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Formlogix is a web tool that create email forms,</p>
<p>using the formlogix tool any one can <strong>build html form to email</strong> without writing a single line of code.</p>
<p>formlogix form creator tool is highly flexible and is easy to use.</p>
<p>learn more about :<a href="http://www.formlogix.com" title="html email form"><strong>html form to email</strong> </a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[sending mail from web form]]></title>
<link>http://formlogix.wordpress.com/2007/01/21/sending-mail-from-web-form/</link>
<pubDate>Sun, 21 Jan 2007 18:24:08 +0000</pubDate>
<dc:creator>form1</dc:creator>
<guid>http://formlogix.wordpress.com/2007/01/21/sending-mail-from-web-form/</guid>
<description><![CDATA[sending an email from html web form can be done using several methods 1-mailto tag, this option requ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>sending an email from html web form</strong> can be done using several methods</p>
<p>1-mailto tag, this option requires no special knoeldge with server side scripting.</p>
<p>   the only issue with this method is that its requires an email client such as &#8220;outlook&#8221; to be installed at the user.</p>
<p>2-server side scripting:this requires some knoledge with server scripting, email component.</p>
<p>using formlogix email forms builder, you will find out that sending email using forms requires none of the above methods.</p>
<p>learn more about <strong><a href="http://www.formlogix.com" title="send mail form">sending email from form</a></strong> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[mail form builder]]></title>
<link>http://formlogix.wordpress.com/2007/01/18/mail-form-builder/</link>
<pubDate>Thu, 18 Jan 2007 12:06:31 +0000</pubDate>
<dc:creator>form1</dc:creator>
<guid>http://formlogix.wordpress.com/2007/01/18/mail-form-builder/</guid>
<description><![CDATA[mail form builder is a tool that build web forms that can be submitted and to be sent via mail. once]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>mail form builder </strong>is a tool that build web forms that can be submitted and to be sent via mail.</p>
<p>once a form is filled in, the server collects the data and then compose it into a mail,</p>
<p>the person who build the email form will get it via mail.</p>
<p>form logix is a free email form builder, formlogix web tool is flexible and easy to use.</p>
<p>  <a href="http://www.formlogix.com/Help/Glossary/Form-Builder.aspx" title="web form builder">what is a form builder</a> ?</p>
<p> <a href="http://www.formlogix.com" title="email form builder">mail form builder</a></p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
