<?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: Diving into PHP: Day 7</title>
	<atom:link href="http://blog.themeforest.net/screencasts/diving-into-php-day-7/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.themeforest.net/screencasts/diving-into-php-day-7/</link>
	<description>The ThemeForest Blog</description>
	<lastBuildDate>Mon, 27 Sep 2010 19:49:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Simon</title>
		<link>http://blog.themeforest.net/screencasts/diving-into-php-day-7/comment-page-1/#comment-24978</link>
		<dc:creator>Simon</dc:creator>
		<pubDate>Tue, 22 Sep 2009 20:00:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.themeforest.net/?p=1329#comment-24978</guid>
		<description>Jeff, your always using cool little shortcuts like creating the form at the beginning of the video. Do you have a reference of the shortcuts you uses anywhere?</description>
		<content:encoded><![CDATA[<p>Jeff, your always using cool little shortcuts like creating the form at the beginning of the video. Do you have a reference of the shortcuts you uses anywhere?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BBKode &#124; Jayj.dk</title>
		<link>http://blog.themeforest.net/screencasts/diving-into-php-day-7/comment-page-1/#comment-15813</link>
		<dc:creator>BBKode &#124; Jayj.dk</dc:creator>
		<pubDate>Tue, 07 Jul 2009 14:26:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.themeforest.net/?p=1329#comment-15813</guid>
		<description>[...] hvis du vil vide mere om det, kan jeg anbefale videoerne A Crash-Course in Regular Expressions og Diving into php day 7 - Begge af Jeffrey Way. Du kan prøve at google det for at få mere at [...]</description>
		<content:encoded><![CDATA[<p>[...] hvis du vil vide mere om det, kan jeg anbefale videoerne A Crash-Course in Regular Expressions og Diving into php day 7 &#8211; Begge af Jeffrey Way. Du kan prøve at google det for at få mere at [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tsalagi</title>
		<link>http://blog.themeforest.net/screencasts/diving-into-php-day-7/comment-page-1/#comment-5566</link>
		<dc:creator>Tsalagi</dc:creator>
		<pubDate>Sun, 15 Feb 2009 09:44:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.themeforest.net/?p=1329#comment-5566</guid>
		<description>Hello Jeff. Thanks again for this tutorial. Big help in introducing PHP. I&#039;ve read a lot on the net about a but either in PHP or IE with the submit buttons on forms activated by php and I&#039;m experiencing issues with the code. When I load the form in IE7 I have to click the submint button two times to get a response and then it is negative because the first click clears the contents of the text field. In Firefox it works perfect. Can you comment on this issue please?

Thanks 

Glad your back in the game!</description>
		<content:encoded><![CDATA[<p>Hello Jeff. Thanks again for this tutorial. Big help in introducing PHP. I&#8217;ve read a lot on the net about a but either in PHP or IE with the submit buttons on forms activated by php and I&#8217;m experiencing issues with the code. When I load the form in IE7 I have to click the submint button two times to get a response and then it is negative because the first click clears the contents of the text field. In Firefox it works perfect. Can you comment on this issue please?</p>
<p>Thanks </p>
<p>Glad your back in the game!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://blog.themeforest.net/screencasts/diving-into-php-day-7/comment-page-1/#comment-5343</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Wed, 11 Feb 2009 05:03:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.themeforest.net/?p=1329#comment-5343</guid>
		<description>Hey Jeff 
Enjoying the tutorials

FYI when you were modifying your original regular expression and added the dash (hyphen) the reason you got an error is because of where you added the hyphen.  You have to be careful where you add that character to the character class. The way you added it, it was try to define a range of characters though that wasn&#039;t what you meant, not the actual character itself.  Your range just happened to be a bad one, hence the error.  If it had been a good one say you may have matched other characters you didn&#039;t intend and not match the hyphen at all. In general that character needs to either be escaped or the very first or very last character of the character class to avoid it being a range operator.

If anyone wants a slightly more detailed explanation I went over it here http://regexadvice.com/blogs/mash/archive/2004/06/17/310.aspx</description>
		<content:encoded><![CDATA[<p>Hey Jeff<br />
Enjoying the tutorials</p>
<p>FYI when you were modifying your original regular expression and added the dash (hyphen) the reason you got an error is because of where you added the hyphen.  You have to be careful where you add that character to the character class. The way you added it, it was try to define a range of characters though that wasn&#8217;t what you meant, not the actual character itself.  Your range just happened to be a bad one, hence the error.  If it had been a good one say you may have matched other characters you didn&#8217;t intend and not match the hyphen at all. In general that character needs to either be escaped or the very first or very last character of the character class to avoid it being a range operator.</p>
<p>If anyone wants a slightly more detailed explanation I went over it here <a href="http://regexadvice.com/blogs/mash/archive/2004/06/17/310.aspx" rel="nofollow">http://regexadvice.com/blogs/mash/archive/2004/06/17/310.aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bryan Kwon</title>
		<link>http://blog.themeforest.net/screencasts/diving-into-php-day-7/comment-page-1/#comment-5340</link>
		<dc:creator>Bryan Kwon</dc:creator>
		<pubDate>Wed, 11 Feb 2009 03:48:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.themeforest.net/?p=1329#comment-5340</guid>
		<description>I have been missing this series so much,
Thank you for coming back!!</description>
		<content:encoded><![CDATA[<p>I have been missing this series so much,<br />
Thank you for coming back!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: LiThiuM</title>
		<link>http://blog.themeforest.net/screencasts/diving-into-php-day-7/comment-page-1/#comment-5339</link>
		<dc:creator>LiThiuM</dc:creator>
		<pubDate>Wed, 11 Feb 2009 03:31:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.themeforest.net/?p=1329#comment-5339</guid>
		<description>Thanks a lot for the Greats tuts Helped me out Getting back on track on PHP. I had left it behind I was not learning properly I guess but you Explain VERY well and I can&#039;t wait for more tuts.

Glad you are feeling better :)</description>
		<content:encoded><![CDATA[<p>Thanks a lot for the Greats tuts Helped me out Getting back on track on PHP. I had left it behind I was not learning properly I guess but you Explain VERY well and I can&#8217;t wait for more tuts.</p>
<p>Glad you are feeling better <img src='http://blog.themeforest.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ilias</title>
		<link>http://blog.themeforest.net/screencasts/diving-into-php-day-7/comment-page-1/#comment-5329</link>
		<dc:creator>ilias</dc:creator>
		<pubDate>Tue, 10 Feb 2009 22:57:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.themeforest.net/?p=1329#comment-5329</guid>
		<description>Thanks!
Glad you&#039;re all better!</description>
		<content:encoded><![CDATA[<p>Thanks!<br />
Glad you&#8217;re all better!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob MacKay</title>
		<link>http://blog.themeforest.net/screencasts/diving-into-php-day-7/comment-page-1/#comment-5293</link>
		<dc:creator>Rob MacKay</dc:creator>
		<pubDate>Tue, 10 Feb 2009 08:15:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.themeforest.net/?p=1329#comment-5293</guid>
		<description>@Jeff  Thanks!  I&#039;ve been looking forward to this! :D</description>
		<content:encoded><![CDATA[<p>@Jeff  Thanks!  I&#8217;ve been looking forward to this! <img src='http://blog.themeforest.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Meshach</title>
		<link>http://blog.themeforest.net/screencasts/diving-into-php-day-7/comment-page-1/#comment-5286</link>
		<dc:creator>Meshach</dc:creator>
		<pubDate>Tue, 10 Feb 2009 03:34:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.themeforest.net/?p=1329#comment-5286</guid>
		<description>@M.A.Yoosuf: 

Give him a chance!
-----------------------

Jeffery, 

I&#039;m sorry you came down with a cold, being sick aint fun.</description>
		<content:encoded><![CDATA[<p>@M.A.Yoosuf: </p>
<p>Give him a chance!<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>Jeffery, </p>
<p>I&#8217;m sorry you came down with a cold, being sick aint fun.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: M.A.Yoosuf</title>
		<link>http://blog.themeforest.net/screencasts/diving-into-php-day-7/comment-page-1/#comment-5284</link>
		<dc:creator>M.A.Yoosuf</dc:creator>
		<pubDate>Tue, 10 Feb 2009 03:02:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.themeforest.net/?p=1329#comment-5284</guid>
		<description>awsome, after one week, pls continue with the OPP series of NETTUTS also  pls, thanks</description>
		<content:encoded><![CDATA[<p>awsome, after one week, pls continue with the OPP series of NETTUTS also  pls, thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
