<?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: PHP Validation Class for Forms</title>
	<atom:link href="http://www.jasonashdown.co.uk/2008/08/php-validation-class-for-forms/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jasonashdown.co.uk/2008/08/php-validation-class-for-forms/</link>
	<description>There&#039;s no place like 127.0.0.1</description>
	<lastBuildDate>Wed, 01 Feb 2012 22:59:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: jitender</title>
		<link>http://www.jasonashdown.co.uk/2008/08/php-validation-class-for-forms/#comment-794</link>
		<dc:creator>jitender</dc:creator>
		<pubDate>Wed, 01 Feb 2012 22:59:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasonashdown.co.uk/?p=27#comment-794</guid>
		<description>how can i used helper function in this scripts</description>
		<content:encoded><![CDATA[<p>how can i used helper function in this scripts</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Ashdown</title>
		<link>http://www.jasonashdown.co.uk/2008/08/php-validation-class-for-forms/#comment-273</link>
		<dc:creator>Jason Ashdown</dc:creator>
		<pubDate>Fri, 02 Sep 2011 10:09:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasonashdown.co.uk/?p=27#comment-273</guid>
		<description>Did you get any further with improvements? I&#039;m considering giving this script a bit of a tidy.</description>
		<content:encoded><![CDATA[<p>Did you get any further with improvements? I&#8217;m considering giving this script a bit of a tidy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: knobby2k</title>
		<link>http://www.jasonashdown.co.uk/2008/08/php-validation-class-for-forms/#comment-244</link>
		<dc:creator>knobby2k</dc:creator>
		<pubDate>Thu, 21 Jul 2011 19:20:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasonashdown.co.uk/?p=27#comment-244</guid>
		<description>sorted number 2! Gave up on number 1... every time i move something i break it!</description>
		<content:encoded><![CDATA[<p>sorted number 2! Gave up on number 1&#8230; every time i move something i break it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: knobby2k</title>
		<link>http://www.jasonashdown.co.uk/2008/08/php-validation-class-for-forms/#comment-242</link>
		<dc:creator>knobby2k</dc:creator>
		<pubDate>Mon, 18 Jul 2011 18:34:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasonashdown.co.uk/?p=27#comment-242</guid>
		<description>Hey,

thanks for getting back to me. I wasn&#039;t holding out for a reply to be honest with your last posting being 2 years ago. 

I&#039;m having a bit trouble modifying your script to meet my needs and i&#039;m fed up of bashing my head against the wall. 

I&#039;m trying to do the following things to your script:

1) my biggest problem. at line 56 you have some code to cleanse the input data. I have added an apostrophe to the preg match characters to allow for foreign surnames (al&#039;habi for example). Due to the  htmlspecialcharacters cleansing the data inputted the source code becomes &#039;&amp;#;&#039; to represent the apostrophe. Obviously i&#039;m not allowing for those characters so the preg match fails. What i&#039;d like to do is to cleanse the data only after it has conducted the preg_match but i&#039;m struggling with that. I need the preg_match to see the apostrophe, match that to the allowed characters and THEN cleanse the data. Hope that makes sense.

2) I want to have a password field and would require the user to enter the data twice in order to confirm the data matches in both input boxes. (I think i can do this but haven&#039;t tried yet as i&#039;ve been trying to sort problem 1.

3) line 430 specifying your own warning doesn&#039;t seem to work for me. It displays my own warning regardless of whether the inputted data meets the requirements or not.

So if you could help with any of the above then i&#039;d really appreciate it, if not then thanks for an excellent script! Was just a shot in the dark that you might still reply here and help out.
 
Also, do you accept donations? I&#039;ve used this script quite a bit and wouldn&#039;t mind paying a small donation as a thanks!

Cheers</description>
		<content:encoded><![CDATA[<p>Hey,</p>
<p>thanks for getting back to me. I wasn&#8217;t holding out for a reply to be honest with your last posting being 2 years ago. </p>
<p>I&#8217;m having a bit trouble modifying your script to meet my needs and i&#8217;m fed up of bashing my head against the wall. </p>
<p>I&#8217;m trying to do the following things to your script:</p>
<p>1) my biggest problem. at line 56 you have some code to cleanse the input data. I have added an apostrophe to the preg match characters to allow for foreign surnames (al&#8217;habi for example). Due to the  htmlspecialcharacters cleansing the data inputted the source code becomes &#8216;&#038;#;&#8217; to represent the apostrophe. Obviously i&#8217;m not allowing for those characters so the preg match fails. What i&#8217;d like to do is to cleanse the data only after it has conducted the preg_match but i&#8217;m struggling with that. I need the preg_match to see the apostrophe, match that to the allowed characters and THEN cleanse the data. Hope that makes sense.</p>
<p>2) I want to have a password field and would require the user to enter the data twice in order to confirm the data matches in both input boxes. (I think i can do this but haven&#8217;t tried yet as i&#8217;ve been trying to sort problem 1.</p>
<p>3) line 430 specifying your own warning doesn&#8217;t seem to work for me. It displays my own warning regardless of whether the inputted data meets the requirements or not.</p>
<p>So if you could help with any of the above then i&#8217;d really appreciate it, if not then thanks for an excellent script! Was just a shot in the dark that you might still reply here and help out.</p>
<p>Also, do you accept donations? I&#8217;ve used this script quite a bit and wouldn&#8217;t mind paying a small donation as a thanks!</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Ashdown</title>
		<link>http://www.jasonashdown.co.uk/2008/08/php-validation-class-for-forms/#comment-240</link>
		<dc:creator>Jason Ashdown</dc:creator>
		<pubDate>Fri, 15 Jul 2011 13:54:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasonashdown.co.uk/?p=27#comment-240</guid>
		<description>Yup, I still respond :) What do you want to ask?</description>
		<content:encoded><![CDATA[<p>Yup, I still respond :) What do you want to ask?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: knobby2k</title>
		<link>http://www.jasonashdown.co.uk/2008/08/php-validation-class-for-forms/#comment-238</link>
		<dc:creator>knobby2k</dc:creator>
		<pubDate>Thu, 14 Jul 2011 19:32:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasonashdown.co.uk/?p=27#comment-238</guid>
		<description>Hey, do you still read and respond to your post&#039;s here?

This is excellent by the way but i have a couple of questions about it.

Cheers</description>
		<content:encoded><![CDATA[<p>Hey, do you still read and respond to your post&#8217;s here?</p>
<p>This is excellent by the way but i have a couple of questions about it.</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Ashdown</title>
		<link>http://www.jasonashdown.co.uk/2008/08/php-validation-class-for-forms/#comment-84</link>
		<dc:creator>Jason Ashdown</dc:creator>
		<pubDate>Sat, 28 Feb 2009 17:16:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasonashdown.co.uk/?p=27#comment-84</guid>
		<description>My god! Finally sorted through all that spam. I&#039;ve turned Akimet on now to save me the hassle on future.

This class doesn&#039;t deal with spam but is useful for validating input (as it says).

I have actually updated this class a few times now, I shall update this version on my website soon.</description>
		<content:encoded><![CDATA[<p>My god! Finally sorted through all that spam. I&#8217;ve turned Akimet on now to save me the hassle on future.</p>
<p>This class doesn&#8217;t deal with spam but is useful for validating input (as it says).</p>
<p>I have actually updated this class a few times now, I shall update this version on my website soon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Me</title>
		<link>http://www.jasonashdown.co.uk/2008/08/php-validation-class-for-forms/#comment-79</link>
		<dc:creator>Me</dc:creator>
		<pubDate>Wed, 25 Feb 2009 18:48:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasonashdown.co.uk/?p=27#comment-79</guid>
		<description>I have been looking at this script. My only problem is, that it looks like you should have used it on your site against these spammers.. :(</description>
		<content:encoded><![CDATA[<p>I have been looking at this script. My only problem is, that it looks like you should have used it on your site against these spammers.. :(</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SBas</title>
		<link>http://www.jasonashdown.co.uk/2008/08/php-validation-class-for-forms/#comment-4</link>
		<dc:creator>SBas</dc:creator>
		<pubDate>Wed, 27 Aug 2008 01:55:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasonashdown.co.uk/?p=27#comment-4</guid>
		<description>A really good idea, I have started using it and like it. So far so good!</description>
		<content:encoded><![CDATA[<p>A really good idea, I have started using it and like it. So far so good!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

