<?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 for Web Development Blog</title>
	<atom:link href="http://www.web-development-blog.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.web-development-blog.com</link>
	<description>Web development tutorials, SEO articles and PHP script resources</description>
	<lastBuildDate>Sun, 28 Jun 2009 14:32:38 +0200</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Modifiers in regular expression patterns by Olaf</title>
		<link>http://www.web-development-blog.com/archives/modifiers-in-regular-expression-patterns/comment-page-1/#comment-117737</link>
		<dc:creator>Olaf</dc:creator>
		<pubDate>Sun, 28 Jun 2009 14:32:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.web-development-blog.com/?p=309#comment-117737</guid>
		<description>That was exactly what happens to me and why I wrote this article ;)</description>
		<content:encoded><![CDATA[<p>That was exactly what happens to me and why I wrote this article <img src='http://www.web-development-blog.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Modifiers in regular expression patterns by Vaioling</title>
		<link>http://www.web-development-blog.com/archives/modifiers-in-regular-expression-patterns/comment-page-1/#comment-117736</link>
		<dc:creator>Vaioling</dc:creator>
		<pubDate>Sun, 28 Jun 2009 14:17:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.web-development-blog.com/?p=309#comment-117736</guid>
		<description>okay i trust u :)

i thought it, because ^ means string-start and $ means string-end, and the string is hello world.

okay, the m modifier interpret every line new. that was new for me :)

thank you!</description>
		<content:encoded><![CDATA[<p>okay i trust u <img src='http://www.web-development-blog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>i thought it, because ^ means string-start and $ means string-end, and the string is hello world.</p>
<p>okay, the m modifier interpret every line new. that was new for me <img src='http://www.web-development-blog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Modifiers in regular expression patterns by Olaf</title>
		<link>http://www.web-development-blog.com/archives/modifiers-in-regular-expression-patterns/comment-page-1/#comment-117735</link>
		<dc:creator>Olaf</dc:creator>
		<pubDate>Sun, 28 Jun 2009 12:32:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.web-development-blog.com/?p=309#comment-117735</guid>
		<description>Hi,
normally I&#039;m not very good in writing test cases ;), but this time I did a test and pasted the code into this article after the browser shows me the string &quot;Yes, a multiline!&quot;

maybe you can try it by yourself?</description>
		<content:encoded><![CDATA[<p>Hi,<br />
normally I&#8217;m not very good in writing test cases <img src='http://www.web-development-blog.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> , but this time I did a test and pasted the code into this article after the browser shows me the string &#8220;Yes, a multiline!&#8221;</p>
<p>maybe you can try it by yourself?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Modifiers in regular expression patterns by Vaioling</title>
		<link>http://www.web-development-blog.com/archives/modifiers-in-regular-expression-patterns/comment-page-1/#comment-117734</link>
		<dc:creator>Vaioling</dc:creator>
		<pubDate>Sun, 28 Jun 2009 12:28:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.web-development-blog.com/?p=309#comment-117734</guid>
		<description>Hey Olaf,

first of all, nice article but this test will not find the word World in your example string ;)

if (preg_match(&#039;/^World$/m&#039;, $str)) echo &#039;Yes, a multiline!&#039;;</description>
		<content:encoded><![CDATA[<p>Hey Olaf,</p>
<p>first of all, nice article but this test will not find the word World in your example string <img src='http://www.web-development-blog.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>if (preg_match(&#8217;/^World$/m&#8217;, $str)) echo &#8216;Yes, a multiline!&#8217;;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Modifiers in regular expression patterns by Olaf</title>
		<link>http://www.web-development-blog.com/archives/modifiers-in-regular-expression-patterns/comment-page-1/#comment-117733</link>
		<dc:creator>Olaf</dc:creator>
		<pubDate>Sun, 28 Jun 2009 07:15:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.web-development-blog.com/?p=309#comment-117733</guid>
		<description>Thanks Les, I&#039;m writing PHP code for years now and noticed this PHP manual page last week the first time :D</description>
		<content:encoded><![CDATA[<p>Thanks Les, I&#8217;m writing PHP code for years now and noticed this PHP manual page last week the first time <img src='http://www.web-development-blog.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Modifiers in regular expression patterns by Les</title>
		<link>http://www.web-development-blog.com/archives/modifiers-in-regular-expression-patterns/comment-page-1/#comment-117732</link>
		<dc:creator>Les</dc:creator>
		<pubDate>Sat, 27 Jun 2009 23:15:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.web-development-blog.com/?p=309#comment-117732</guid>
		<description>Good article, short and very much to the point, regular expressions have always been a pain and you explain these modifiers in plain english so thumbs up to you.

Have a pint on me aye?!</description>
		<content:encoded><![CDATA[<p>Good article, short and very much to the point, regular expressions have always been a pain and you explain these modifiers in plain english so thumbs up to you.</p>
<p>Have a pint on me aye?!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Image manipulations with Imagemagick by Michael Smyth (The Web Design Guy)</title>
		<link>http://www.web-development-blog.com/archives/image-manipulations-with-imagemagick/comment-page-1/#comment-117728</link>
		<dc:creator>Michael Smyth (The Web Design Guy)</dc:creator>
		<pubDate>Wed, 24 Jun 2009 21:21:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.web-development-blog.com/?p=294#comment-117728</guid>
		<description>Wow, this is going to make manipulating images on the fly much easier..usefull article!</description>
		<content:encoded><![CDATA[<p>Wow, this is going to make manipulating images on the fly much easier..usefull article!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Image manipulations with Imagemagick by Robin</title>
		<link>http://www.web-development-blog.com/archives/image-manipulations-with-imagemagick/comment-page-1/#comment-117725</link>
		<dc:creator>Robin</dc:creator>
		<pubDate>Sat, 20 Jun 2009 21:40:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.web-development-blog.com/?p=294#comment-117725</guid>
		<description>ImageMagick can be a lot more efficient than GD too, and can do some operations which may be too memory intensive in GD, such as resizing</description>
		<content:encoded><![CDATA[<p>ImageMagick can be a lot more efficient than GD too, and can do some operations which may be too memory intensive in GD, such as resizing</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Count clicks the right way! by Olaf</title>
		<link>http://www.web-development-blog.com/archives/count-clicks-the-right-way/comment-page-1/#comment-117699</link>
		<dc:creator>Olaf</dc:creator>
		<pubDate>Sun, 17 May 2009 12:16:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.web-development-blog.com/?p=236#comment-117699</guid>
		<description>Ernie, the tables are just examples. You need to compare them with your current ones.</description>
		<content:encoded><![CDATA[<p>Ernie, the tables are just examples. You need to compare them with your current ones.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Count clicks the right way! by Ernie</title>
		<link>http://www.web-development-blog.com/archives/count-clicks-the-right-way/comment-page-1/#comment-117697</link>
		<dc:creator>Ernie</dc:creator>
		<pubDate>Sat, 16 May 2009 20:10:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.web-development-blog.com/?p=236#comment-117697</guid>
		<description>will creating the tables replace old ones? or just add extras?</description>
		<content:encoded><![CDATA[<p>will creating the tables replace old ones? or just add extras?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 0.693 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2009-07-04 09:57:01 -->
