<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: How to Validate a Form Using PHP Part 1: Complete with Error Messages!</title>
	<atom:link href="http://buildinternet.com/2008/12/how-to-validate-a-form-complete-with-error-messages-using-php-part-1/feed/" rel="self" type="application/rss+xml" />
	<link>http://buildinternet.com/2008/12/how-to-validate-a-form-complete-with-error-messages-using-php-part-1/</link>
	<description>Web Design, Development, and Business</description>
	<lastBuildDate>Thu, 09 Feb 2012 06:54:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Don</title>
		<link>http://buildinternet.com/2008/12/how-to-validate-a-form-complete-with-error-messages-using-php-part-1/comment-page-1/#comment-32738</link>
		<dc:creator>Don</dc:creator>
		<pubDate>Thu, 19 Jan 2012 02:15:52 +0000</pubDate>
		<guid isPermaLink="false">http://buildinternet.com/?p=84#comment-32738</guid>
		<description>Great post, hope we can learn from each others, hope to learn more about PHP</description>
		<content:encoded><![CDATA[<p>Great post, hope we can learn from each others, hope to learn more about PHP</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: siva</title>
		<link>http://buildinternet.com/2008/12/how-to-validate-a-form-complete-with-error-messages-using-php-part-1/comment-page-1/#comment-32668</link>
		<dc:creator>siva</dc:creator>
		<pubDate>Wed, 11 Jan 2012 10:31:04 +0000</pubDate>
		<guid isPermaLink="false">http://buildinternet.com/?p=84#comment-32668</guid>
		<description>hi..great one</description>
		<content:encoded><![CDATA[<p>hi..great one</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ola</title>
		<link>http://buildinternet.com/2008/12/how-to-validate-a-form-complete-with-error-messages-using-php-part-1/comment-page-1/#comment-32571</link>
		<dc:creator>ola</dc:creator>
		<pubDate>Wed, 04 Jan 2012 05:43:29 +0000</pubDate>
		<guid isPermaLink="false">http://buildinternet.com/?p=84#comment-32571</guid>
		<description>include&quot;config.php&quot;;

	$username = $_POST[&#039;uname&#039;];
	$firstname = $_POST[&#039;fname&#039;];
	$lastname = $_POST[&#039;lname&#039;];
	$email = $_POST[&#039;email&#039;];
	$password = md5($_POST[&#039;pswd&#039;]);
	$confirmpassword = md5($_POST[&#039;confpswd&#039;]);
	$phone = $_POST[&#039;phone&#039;];
	$dateofbirth = $_POST[&#039;dob&#039;];
	$address = $_POST[&#039;address&#039;];
	$city = $_POST[&#039;city&#039;];
	$state = $_POST[&#039;state&#039;];
	$postcode = $_POST[&#039;code&#039;];
	$country = $_POST[&#039;country&#039;];

	
$insert = &#039;INSERT INTO user_reg(id, uname, fname, lname, email, pswd, confpswd, phone, dob, address, city, state, code, country) 
VALUES (&quot;&#039;.$username.&#039;&quot;, &quot;&#039;.$firstname.&#039;&quot;, &quot;&#039;.$lastname.&#039;&quot;, &quot;&#039;.$email.&#039;&quot;; &quot;&#039;.$password.&#039;&quot;; &quot;&#039;.$confirmpassword.&#039;&quot;; &quot;&#039;.$phone.&#039;&quot;; 
&quot;&#039;.$dateofbirth.&#039;&quot;; &quot;&#039;.$address.&#039;&quot;; &quot;&#039;.$city.&#039;&quot;; &quot;&#039;.$state.&#039;&quot;; &quot;&#039;.$postcode.&#039;&quot;; &quot;&#039;.$country.&#039;&quot;)&#039;;

mysql_query($insert);</description>
		<content:encoded><![CDATA[<p>include&#8221;config.php&#8221;;</p>
<p>	$username = $_POST['uname'];<br />
	$firstname = $_POST['fname'];<br />
	$lastname = $_POST['lname'];<br />
	$email = $_POST['email'];<br />
	$password = md5($_POST['pswd']);<br />
	$confirmpassword = md5($_POST['confpswd']);<br />
	$phone = $_POST['phone'];<br />
	$dateofbirth = $_POST['dob'];<br />
	$address = $_POST['address'];<br />
	$city = $_POST['city'];<br />
	$state = $_POST['state'];<br />
	$postcode = $_POST['code'];<br />
	$country = $_POST['country'];</p>
<p>$insert = &#8216;INSERT INTO user_reg(id, uname, fname, lname, email, pswd, confpswd, phone, dob, address, city, state, code, country)<br />
VALUES (&#8220;&#8216;.$username.&#8217;&#8221;, &#8220;&#8216;.$firstname.&#8217;&#8221;, &#8220;&#8216;.$lastname.&#8217;&#8221;, &#8220;&#8216;.$email.&#8217;&#8221;; &#8220;&#8216;.$password.&#8217;&#8221;; &#8220;&#8216;.$confirmpassword.&#8217;&#8221;; &#8220;&#8216;.$phone.&#8217;&#8221;;<br />
&#8220;&#8216;.$dateofbirth.&#8217;&#8221;; &#8220;&#8216;.$address.&#8217;&#8221;; &#8220;&#8216;.$city.&#8217;&#8221;; &#8220;&#8216;.$state.&#8217;&#8221;; &#8220;&#8216;.$postcode.&#8217;&#8221;; &#8220;&#8216;.$country.&#8217;&#8221;)&#8217;;</p>
<p>mysql_query($insert);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ola</title>
		<link>http://buildinternet.com/2008/12/how-to-validate-a-form-complete-with-error-messages-using-php-part-1/comment-page-1/#comment-32570</link>
		<dc:creator>ola</dc:creator>
		<pubDate>Wed, 04 Jan 2012 05:42:22 +0000</pubDate>
		<guid isPermaLink="false">http://buildinternet.com/?p=84#comment-32570</guid>
		<description>()</description>
		<content:encoded><![CDATA[<p>()</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ola</title>
		<link>http://buildinternet.com/2008/12/how-to-validate-a-form-complete-with-error-messages-using-php-part-1/comment-page-1/#comment-32569</link>
		<dc:creator>ola</dc:creator>
		<pubDate>Wed, 04 Jan 2012 05:40:02 +0000</pubDate>
		<guid isPermaLink="false">http://buildinternet.com/?p=84#comment-32569</guid>
		<description>Pls what can be wrong??i have the following data and i want to input them into mysql database but its not inputing..what might be wrong??the code goes below:


</description>
		<content:encoded><![CDATA[<p>Pls what can be wrong??i have the following data and i want to input them into mysql database but its not inputing..what might be wrong??the code goes below:</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonas Lagerwall</title>
		<link>http://buildinternet.com/2008/12/how-to-validate-a-form-complete-with-error-messages-using-php-part-1/comment-page-1/#comment-32566</link>
		<dc:creator>Jonas Lagerwall</dc:creator>
		<pubDate>Tue, 03 Jan 2012 22:25:36 +0000</pubDate>
		<guid isPermaLink="false">http://buildinternet.com/?p=84#comment-32566</guid>
		<description>I wrote a form validator in case someone wants to check it out. The approach is slightly different from what is used here. It can be found on jform.lagerwall.net.

Cheers!</description>
		<content:encoded><![CDATA[<p>I wrote a form validator in case someone wants to check it out. The approach is slightly different from what is used here. It can be found on jform.lagerwall.net.</p>
<p>Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tedy</title>
		<link>http://buildinternet.com/2008/12/how-to-validate-a-form-complete-with-error-messages-using-php-part-1/comment-page-1/#comment-31742</link>
		<dc:creator>Tedy</dc:creator>
		<pubDate>Sun, 23 Oct 2011 13:23:01 +0000</pubDate>
		<guid isPermaLink="false">http://buildinternet.com/?p=84#comment-31742</guid>
		<description>Hellow. Nice tut dude. 


how about validating forms when you have to check whether the form contains only alphanumeric characters or not ? or checking if the password field matches the confirm password field, etc.</description>
		<content:encoded><![CDATA[<p>Hellow. Nice tut dude. </p>
<p>how about validating forms when you have to check whether the form contains only alphanumeric characters or not ? or checking if the password field matches the confirm password field, etc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve 10-4-11 &#124; emerginsttech</title>
		<link>http://buildinternet.com/2008/12/how-to-validate-a-form-complete-with-error-messages-using-php-part-1/comment-page-1/#comment-31389</link>
		<dc:creator>Steve 10-4-11 &#124; emerginsttech</dc:creator>
		<pubDate>Tue, 04 Oct 2011 21:22:43 +0000</pubDate>
		<guid isPermaLink="false">http://buildinternet.com/?p=84#comment-31389</guid>
		<description>[...] stumbled upon this link which may help find a solution to the validation [...]</description>
		<content:encoded><![CDATA[<p>[...] stumbled upon this link which may help find a solution to the validation [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: byterbit</title>
		<link>http://buildinternet.com/2008/12/how-to-validate-a-form-complete-with-error-messages-using-php-part-1/comment-page-1/#comment-30527</link>
		<dc:creator>byterbit</dc:creator>
		<pubDate>Thu, 11 Aug 2011 16:28:36 +0000</pubDate>
		<guid isPermaLink="false">http://buildinternet.com/?p=84#comment-30527</guid>
		<description>also cant get it to do anything; perhaps a complete code listing on one entity would be helpful ?</description>
		<content:encoded><![CDATA[<p>also cant get it to do anything; perhaps a complete code listing on one entity would be helpful ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vikas</title>
		<link>http://buildinternet.com/2008/12/how-to-validate-a-form-complete-with-error-messages-using-php-part-1/comment-page-1/#comment-30482</link>
		<dc:creator>Vikas</dc:creator>
		<pubDate>Wed, 10 Aug 2011 07:19:21 +0000</pubDate>
		<guid isPermaLink="false">http://buildinternet.com/?p=84#comment-30482</guid>
		<description>nice one help me to do work</description>
		<content:encoded><![CDATA[<p>nice one help me to do work</p>
]]></content:encoded>
	</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
Database Caching using memcached
Object Caching 367/367 objects using disk: basic

Served from: buildinternet.com @ 2012-02-09 04:18:03 -->
