<?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: A PHP form obfuscator; secure and spam free PHP forms</title>
	<atom:link href="http://codingrecipes.com/a-php-form-obfuscator-secure-and-spam-free-php-forms/feed" rel="self" type="application/rss+xml" />
	<link>http://codingrecipes.com/a-php-form-obfuscator-secure-and-spam-free-php-forms</link>
	<description></description>
	<lastBuildDate>Tue, 01 May 2012 00:54:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
	<item>
		<title>By: Fatih</title>
		<link>http://codingrecipes.com/a-php-form-obfuscator-secure-and-spam-free-php-forms/comment-page-1#comment-2068</link>
		<dc:creator>Fatih</dc:creator>
		<pubDate>Fri, 17 Jun 2011 00:33:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=156#comment-2068</guid>
		<description>Thanks! you saved my time, I was about to write one. I guess I will change it a little</description>
		<content:encoded><![CDATA[<p>Thanks! you saved my time, I was about to write one. I guess I will change it a little</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon</title>
		<link>http://codingrecipes.com/a-php-form-obfuscator-secure-and-spam-free-php-forms/comment-page-1#comment-1820</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Tue, 12 Apr 2011 05:06:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=156#comment-1820</guid>
		<description>Would it be of much use to have the secret key automatically change? like a unix date+rand0mCh@ract3rs
? or would this just be wasting time.. Reason I ask is this does good with obfuscating the input fields, but if the secret key that the generated field is based off of changes daily, the possibility of someone figuring out the fields decreases more, right? Or is this just pushing the lines of paranoia?</description>
		<content:encoded><![CDATA[<p>Would it be of much use to have the secret key automatically change? like a unix date+rand0mCh@ract3rs<br />
? or would this just be wasting time.. Reason I ask is this does good with obfuscating the input fields, but if the secret key that the generated field is based off of changes daily, the possibility of someone figuring out the fields decreases more, right? Or is this just pushing the lines of paranoia?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon</title>
		<link>http://codingrecipes.com/a-php-form-obfuscator-secure-and-spam-free-php-forms/comment-page-1#comment-1819</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Tue, 12 Apr 2011 01:43:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=156#comment-1819</guid>
		<description>Sweet!</description>
		<content:encoded><![CDATA[<p>Sweet!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Codehead</title>
		<link>http://codingrecipes.com/a-php-form-obfuscator-secure-and-spam-free-php-forms/comment-page-1#comment-30</link>
		<dc:creator>Codehead</dc:creator>
		<pubDate>Fri, 31 Jul 2009 00:08:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=156#comment-30</guid>
		<description>Richard, you need this: http://us3.php.net/manual/en/book.mcrypt.php</description>
		<content:encoded><![CDATA[<p>Richard, you need this: <a href="http://us3.php.net/manual/en/book.mcrypt.php" rel="nofollow">http://us3.php.net/manual/en/book.mcrypt.php</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard Kimber</title>
		<link>http://codingrecipes.com/a-php-form-obfuscator-secure-and-spam-free-php-forms/comment-page-1#comment-29</link>
		<dc:creator>Richard Kimber</dc:creator>
		<pubDate>Thu, 30 Jul 2009 14:34:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=156#comment-29</guid>
		<description>I&#039;m testing this on my PC with PHP 5

I get an error:

Fatal error: Call to undefined function mcrypt_get_iv_size() in /home/psrwebs/PSR/search/class_obfuscator.php on line 80</description>
		<content:encoded><![CDATA[<p>I&#8217;m testing this on my PC with PHP 5</p>
<p>I get an error:</p>
<p>Fatal error: Call to undefined function mcrypt_get_iv_size() in /home/psrwebs/PSR/search/class_obfuscator.php on line 80</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Codehead</title>
		<link>http://codingrecipes.com/a-php-form-obfuscator-secure-and-spam-free-php-forms/comment-page-1#comment-27</link>
		<dc:creator>Codehead</dc:creator>
		<pubDate>Wed, 17 Dec 2008 04:36:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=156#comment-27</guid>
		<description>KRD, the main reason is this:
http://developers.slashdot.org/article.pl?sid=07/07/14/0646216

It&#039;s because it uses PHP5&#039;s member visibility keywords like public, private etc.

You can make it work with PHP4 if you replace all these keywords, you will have to replace the ones before member variables with &quot;var&quot; (no quotes) and delete the ones before methods.</description>
		<content:encoded><![CDATA[<p>KRD, the main reason is this:<br />
<a href="http://developers.slashdot.org/article.pl?sid=07/07/14/0646216" rel="nofollow">http://developers.slashdot.org/article.pl?sid=07/07/14/0646216</a></p>
<p>It&#8217;s because it uses PHP5&#8242;s member visibility keywords like public, private etc.</p>
<p>You can make it work with PHP4 if you replace all these keywords, you will have to replace the ones before member variables with &#8220;var&#8221; (no quotes) and delete the ones before methods.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: KRD</title>
		<link>http://codingrecipes.com/a-php-form-obfuscator-secure-and-spam-free-php-forms/comment-page-1#comment-26</link>
		<dc:creator>KRD</dc:creator>
		<pubDate>Wed, 17 Dec 2008 04:06:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=156#comment-26</guid>
		<description>I can&#039;t seem to get this working in a PHP4 environment. It works perfectly (nice work) in PHP5....any ideas on why it&#039;s a no go in 4?</description>
		<content:encoded><![CDATA[<p>I can&#8217;t seem to get this working in a PHP4 environment. It works perfectly (nice work) in PHP5&#8230;.any ideas on why it&#8217;s a no go in 4?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Codehead</title>
		<link>http://codingrecipes.com/a-php-form-obfuscator-secure-and-spam-free-php-forms/comment-page-1#comment-25</link>
		<dc:creator>Codehead</dc:creator>
		<pubDate>Thu, 23 Oct 2008 17:27:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=156#comment-25</guid>
		<description>Hey, how much experience do you have with PHP?
I suggest that you take a look at the file &quot;example.php&quot; which is included in the ZIP file and see how it works.</description>
		<content:encoded><![CDATA[<p>Hey, how much experience do you have with PHP?<br />
I suggest that you take a look at the file &#8220;example.php&#8221; which is included in the ZIP file and see how it works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chiefrunningnose</title>
		<link>http://codingrecipes.com/a-php-form-obfuscator-secure-and-spam-free-php-forms/comment-page-1#comment-24</link>
		<dc:creator>chiefrunningnose</dc:creator>
		<pubDate>Thu, 23 Oct 2008 03:30:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=156#comment-24</guid>
		<description>Sounds like a good idea, but how the hell do you use it.  Where do you put it.  How do you link to it?  I downloaded it expecting some comment/instructions but found none.</description>
		<content:encoded><![CDATA[<p>Sounds like a good idea, but how the hell do you use it.  Where do you put it.  How do you link to it?  I downloaded it expecting some comment/instructions but found none.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jesusvld</title>
		<link>http://codingrecipes.com/a-php-form-obfuscator-secure-and-spam-free-php-forms/comment-page-1#comment-23</link>
		<dc:creator>jesusvld</dc:creator>
		<pubDate>Thu, 21 Aug 2008 03:22:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=156#comment-23</guid>
		<description>Excellent work!! thank you for share :)</description>
		<content:encoded><![CDATA[<p>Excellent work!! thank you for share <img src='http://codingrecipes.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

