<?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: Process Your PHP Form POSTs Faster.</title>
	<atom:link href="http://www.figmentthinking.com/2008/04/23/process-your-php-form-posts-faster/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.figmentthinking.com/2008/04/23/process-your-php-form-posts-faster/</link>
	<description>Learn how to write better code. Simple techniques to produce faster results and save you time.</description>
	<lastBuildDate>Tue, 08 Jun 2010 16:11:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Marion Dorsett</title>
		<link>http://www.figmentthinking.com/2008/04/23/process-your-php-form-posts-faster/comment-page-1/#comment-110</link>
		<dc:creator>Marion Dorsett</dc:creator>
		<pubDate>Sat, 28 Mar 2009 03:56:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.figmentthinking.com/?p=43#comment-110</guid>
		<description>Brian,

Thanks for the comment regarding security.  The context of this post was to address easier ways to manipulate the data by using a loop to deal with the array vs. dealing w/ each variable independently.  I actually have a series of functions in my code repository, that I run the arrays through rewriting and creating a whole new array that&#039;s clean and tidy before I begin to process the data, but that&#039;s a topic for another post.

Thanks.</description>
		<content:encoded><![CDATA[<p>Brian,</p>
<p>Thanks for the comment regarding security.  The context of this post was to address easier ways to manipulate the data by using a loop to deal with the array vs. dealing w/ each variable independently.  I actually have a series of functions in my code repository, that I run the arrays through rewriting and creating a whole new array that&#8217;s clean and tidy before I begin to process the data, but that&#8217;s a topic for another post.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian</title>
		<link>http://www.figmentthinking.com/2008/04/23/process-your-php-form-posts-faster/comment-page-1/#comment-109</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Fri, 27 Mar 2009 23:40:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.figmentthinking.com/?p=43#comment-109</guid>
		<description>Doing this causes the same security risks as having register_globals on.  If you do this make sure you initialize EVERY variable you use.  IE:

$success=false; //make sure you do this!!!  or it could be overwritten with true
if ($password=&quot;password&quot;)
{
  $success=true;
}

Also, you can do the same thing as your code using the PHP extract function with $_POST argument.   Same risks.</description>
		<content:encoded><![CDATA[<p>Doing this causes the same security risks as having register_globals on.  If you do this make sure you initialize EVERY variable you use.  IE:</p>
<p>$success=false; //make sure you do this!!!  or it could be overwritten with true<br />
if ($password=&#8221;password&#8221;)<br />
{<br />
  $success=true;<br />
}</p>
<p>Also, you can do the same thing as your code using the PHP extract function with $_POST argument.   Same risks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy Sowards</title>
		<link>http://www.figmentthinking.com/2008/04/23/process-your-php-form-posts-faster/comment-page-1/#comment-66</link>
		<dc:creator>Andy Sowards</dc:creator>
		<pubDate>Fri, 17 Oct 2008 13:14:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.figmentthinking.com/?p=43#comment-66</guid>
		<description>It is, should probably work on my blogs Readability :) since SOME people can&#039;t deal with the dark background ;)</description>
		<content:encoded><![CDATA[<p>It is, should probably work on my blogs Readability <img src='http://www.figmentthinking.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  since SOME people can&#8217;t deal with the dark background <img src='http://www.figmentthinking.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: marion</title>
		<link>http://www.figmentthinking.com/2008/04/23/process-your-php-form-posts-faster/comment-page-1/#comment-64</link>
		<dc:creator>marion</dc:creator>
		<pubDate>Tue, 14 Oct 2008 00:25:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.figmentthinking.com/?p=43#comment-64</guid>
		<description>Thanks.  I think it&#039;s a lot easier to read.</description>
		<content:encoded><![CDATA[<p>Thanks.  I think it&#8217;s a lot easier to read.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy Sowards</title>
		<link>http://www.figmentthinking.com/2008/04/23/process-your-php-form-posts-faster/comment-page-1/#comment-63</link>
		<dc:creator>Andy Sowards</dc:creator>
		<pubDate>Mon, 13 Oct 2008 18:47:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.figmentthinking.com/?p=43#comment-63</guid>
		<description>Your new design is AMAZING :)</description>
		<content:encoded><![CDATA[<p>Your new design is AMAZING <img src='http://www.figmentthinking.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
