<?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 2: Streamline Using Arrays</title>
	<atom:link href="http://buildinternet.com/2008/12/how-to-validate-a-form-using-php-part-2-streamline-using-arrays/feed/" rel="self" type="application/rss+xml" />
	<link>http://buildinternet.com/2008/12/how-to-validate-a-form-using-php-part-2-streamline-using-arrays/</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: MattD</title>
		<link>http://buildinternet.com/2008/12/how-to-validate-a-form-using-php-part-2-streamline-using-arrays/comment-page-1/#comment-29939</link>
		<dc:creator>MattD</dc:creator>
		<pubDate>Wed, 13 Jul 2011 18:55:25 +0000</pubDate>
		<guid isPermaLink="false">http://buildinternet.com/?p=267#comment-29939</guid>
		<description>The comment by Keith Russell makes a good point... where is part 3?? Did this tutorial fall into completion limbo? After reading all the comments, it appears that 99% of the readers are fluent enough in PHP to finish the project themselves. I am not in that exclusive club. The thorough explanations Sam gives have been exceedingly helpful to me, and I would really appreciate the conclusion to his tut. Come on guys... help out a noob.</description>
		<content:encoded><![CDATA[<p>The comment by Keith Russell makes a good point&#8230; where is part 3?? Did this tutorial fall into completion limbo? After reading all the comments, it appears that 99% of the readers are fluent enough in PHP to finish the project themselves. I am not in that exclusive club. The thorough explanations Sam gives have been exceedingly helpful to me, and I would really appreciate the conclusion to his tut. Come on guys&#8230; help out a noob.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mircosx</title>
		<link>http://buildinternet.com/2008/12/how-to-validate-a-form-using-php-part-2-streamline-using-arrays/comment-page-1/#comment-29253</link>
		<dc:creator>Mircosx</dc:creator>
		<pubDate>Fri, 10 Jun 2011 11:57:32 +0000</pubDate>
		<guid isPermaLink="false">http://buildinternet.com/?p=267#comment-29253</guid>
		<description>I&#039;m new to php, very nice script, works very good but... how do I post data to the db if I&#039;m using the post button to validate  the form?? 

thanks in advance</description>
		<content:encoded><![CDATA[<p>I&#8217;m new to php, very nice script, works very good but&#8230; how do I post data to the db if I&#8217;m using the post button to validate  the form?? </p>
<p>thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Keith Russell</title>
		<link>http://buildinternet.com/2008/12/how-to-validate-a-form-using-php-part-2-streamline-using-arrays/comment-page-1/#comment-29206</link>
		<dc:creator>Keith Russell</dc:creator>
		<pubDate>Tue, 07 Jun 2011 11:37:39 +0000</pubDate>
		<guid isPermaLink="false">http://buildinternet.com/?p=267#comment-29206</guid>
		<description>where is part 3??? lol</description>
		<content:encoded><![CDATA[<p>where is part 3??? lol</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: NameCo</title>
		<link>http://buildinternet.com/2008/12/how-to-validate-a-form-using-php-part-2-streamline-using-arrays/comment-page-1/#comment-29041</link>
		<dc:creator>NameCo</dc:creator>
		<pubDate>Wed, 25 May 2011 09:22:16 +0000</pubDate>
		<guid isPermaLink="false">http://buildinternet.com/?p=267#comment-29041</guid>
		<description>Do you have PHP and CSS will help you guys? message recording system? thanks :-D</description>
		<content:encoded><![CDATA[<p>Do you have PHP and CSS will help you guys? message recording system? thanks :-D</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aryaan</title>
		<link>http://buildinternet.com/2008/12/how-to-validate-a-form-using-php-part-2-streamline-using-arrays/comment-page-1/#comment-28720</link>
		<dc:creator>aryaan</dc:creator>
		<pubDate>Mon, 02 May 2011 05:15:36 +0000</pubDate>
		<guid isPermaLink="false">http://buildinternet.com/?p=267#comment-28720</guid>
		<description>oh yeah! sorry for the trouble no need to answer my question cause i has a curly bracket at the wrong place. thanks</description>
		<content:encoded><![CDATA[<p>oh yeah! sorry for the trouble no need to answer my question cause i has a curly bracket at the wrong place. thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aryaan</title>
		<link>http://buildinternet.com/2008/12/how-to-validate-a-form-using-php-part-2-streamline-using-arrays/comment-page-1/#comment-28719</link>
		<dc:creator>aryaan</dc:creator>
		<pubDate>Mon, 02 May 2011 05:00:08 +0000</pubDate>
		<guid isPermaLink="false">http://buildinternet.com/?p=267#comment-28719</guid>
		<description>sorry this my code: and i get this error :Warning: array_push() expects parameter 1 to be array, null given in C:\wamp\www\phppractise\new2.php on line 12


 $value){
		$temp = is_array($value) ? $value : trim($value); 
	 if (empty($temp) &amp;&amp; in_array($field, $required)) { 
global $listed_array;	 
      array_push($errors, $field, $required);  
  
}  
		if (empty($errors)){
		//the form complet
		unset($errors);
		}
}
}
?&gt;
</description>
		<content:encoded><![CDATA[<p>sorry this my code: and i get this error :Warning: array_push() expects parameter 1 to be array, null given in C:\wamp\www\phppractise\new2.php on line 12</p>
<p> $value){<br />
		$temp = is_array($value) ? $value : trim($value);<br />
	 if (empty($temp) &amp;&amp; in_array($field, $required)) {<br />
global $listed_array;<br />
      array_push($errors, $field, $required);  </p>
<p>}<br />
		if (empty($errors)){<br />
		//the form complet<br />
		unset($errors);<br />
		}<br />
}<br />
}<br />
?&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aryaan</title>
		<link>http://buildinternet.com/2008/12/how-to-validate-a-form-using-php-part-2-streamline-using-arrays/comment-page-1/#comment-28718</link>
		<dc:creator>aryaan</dc:creator>
		<pubDate>Mon, 02 May 2011 04:55:16 +0000</pubDate>
		<guid isPermaLink="false">http://buildinternet.com/?p=267#comment-28718</guid>
		<description>i get the the following error any idea?

Warning: array_push() expects parameter 1 to be array, null given in C:\wamp\www\phppractise\new2.php on line 12</description>
		<content:encoded><![CDATA[<p>i get the the following error any idea?</p>
<p>Warning: array_push() expects parameter 1 to be array, null given in C:\wamp\www\phppractise\new2.php on line 12</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pankti</title>
		<link>http://buildinternet.com/2008/12/how-to-validate-a-form-using-php-part-2-streamline-using-arrays/comment-page-1/#comment-28498</link>
		<dc:creator>Pankti</dc:creator>
		<pubDate>Thu, 14 Apr 2011 12:49:28 +0000</pubDate>
		<guid isPermaLink="false">http://buildinternet.com/?p=267#comment-28498</guid>
		<description>umm.. Sam Dunn... Sir.. awesome webpages.. i am designing a mail client using PHP.. can u help me out wid dat? plese plese ples?! Tx....! :))</description>
		<content:encoded><![CDATA[<p>umm.. Sam Dunn&#8230; Sir.. awesome webpages.. i am designing a mail client using PHP.. can u help me out wid dat? plese plese ples?! Tx&#8230;.! :))</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rupesh raut</title>
		<link>http://buildinternet.com/2008/12/how-to-validate-a-form-using-php-part-2-streamline-using-arrays/comment-page-1/#comment-28477</link>
		<dc:creator>rupesh raut</dc:creator>
		<pubDate>Wed, 13 Apr 2011 15:09:05 +0000</pubDate>
		<guid isPermaLink="false">http://buildinternet.com/?p=267#comment-28477</guid>
		<description>really it&#039;s more helpful</description>
		<content:encoded><![CDATA[<p>really it&#8217;s more helpful</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Kristian</title>
		<link>http://buildinternet.com/2008/12/how-to-validate-a-form-using-php-part-2-streamline-using-arrays/comment-page-1/#comment-27775</link>
		<dc:creator>Jon Kristian</dc:creator>
		<pubDate>Sun, 13 Mar 2011 17:02:33 +0000</pubDate>
		<guid isPermaLink="false">http://buildinternet.com/?p=267#comment-27775</guid>
		<description>Elegant and easy to adapt, great walkthrough.</description>
		<content:encoded><![CDATA[<p>Elegant and easy to adapt, great walkthrough.</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 366/367 objects using disk: basic

Served from: buildinternet.com @ 2012-02-09 04:07:50 -->
