<?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"
	>
<channel>
	<title>Comments on: NUDE: Create Dynamic Landing Pages In 15 Minutes Or Less</title>
	<atom:link href="http://www.semvironment.com/nude-create-dynamic-landing-pages-in-15-minutes-or-less/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.semvironment.com/nude-create-dynamic-landing-pages-in-15-minutes-or-less/</link>
	<description>Turning Clicks Into Customers</description>
	<pubDate>Tue, 07 Oct 2008 03:39:46 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: jameszol</title>
		<link>http://www.semvironment.com/nude-create-dynamic-landing-pages-in-15-minutes-or-less/#comment-9850</link>
		<dc:creator>jameszol</dc:creator>
		<pubDate>Mon, 06 Oct 2008 14:47:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.semvironment.com/nude-create-dynamic-landing-pages-in-15-minutes-or-less/#comment-9850</guid>
		<description>Brett!! That's it...I can't believe I missed that. You're right - I did replace ucwords with htmlentities quite some time ago for security and I completely forgot about it. Nice find! I'll change the blog...do you keep a blog/site somewhere so I can credit you for that change?</description>
		<content:encoded><![CDATA[<p>Brett!! That&#8217;s it&#8230;I can&#8217;t believe I missed that. You&#8217;re right - I did replace ucwords with htmlentities quite some time ago for security and I completely forgot about it. Nice find! I&#8217;ll change the blog&#8230;do you keep a blog/site somewhere so I can credit you for that change?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brett</title>
		<link>http://www.semvironment.com/nude-create-dynamic-landing-pages-in-15-minutes-or-less/#comment-9834</link>
		<dc:creator>Brett</dc:creator>
		<pubDate>Mon, 06 Oct 2008 11:53:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.semvironment.com/nude-create-dynamic-landing-pages-in-15-minutes-or-less/#comment-9834</guid>
		<description>OK.  I figured out the ucwords problem!  To get capitalization on the first letters of each keyword simply replace

{echo htmlentities($_GET['kw']);}

with

{echo htmlentities(ucwords($_GET['kw']));}

It sorted it for me.  Hope that helps :)</description>
		<content:encoded><![CDATA[<p>OK.  I figured out the ucwords problem!  To get capitalization on the first letters of each keyword simply replace</p>
<p>{echo htmlentities($_GET['kw']);}</p>
<p>with</p>
<p>{echo htmlentities(ucwords($_GET['kw']));}</p>
<p>It sorted it for me.  Hope that helps <img src='http://www.semvironment.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brett</title>
		<link>http://www.semvironment.com/nude-create-dynamic-landing-pages-in-15-minutes-or-less/#comment-9833</link>
		<dc:creator>Brett</dc:creator>
		<pubDate>Mon, 06 Oct 2008 11:42:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.semvironment.com/nude-create-dynamic-landing-pages-in-15-minutes-or-less/#comment-9833</guid>
		<description>I'm having the same problem with ucwords.  Everything's working fine, but the first letters of the keywords aren't capitalized.  The link http://us3.php.net/ucwords didn't really help either.  My server runs php 5.

Perhaps the problem is the fact that you changed

{echo ucwords($_GET['kw']);}

to

{echo htmlentities($_GET['kw']);}

for security reasons? So how can we put 'ucwords' and 'htmlentities' together on the same line??</description>
		<content:encoded><![CDATA[<p>I&#8217;m having the same problem with ucwords.  Everything&#8217;s working fine, but the first letters of the keywords aren&#8217;t capitalized.  The link <a href="http://us3.php.net/ucwords">http://us3.php.net/ucwords</a> didn&#8217;t really help either.  My server runs php 5.</p>
<p>Perhaps the problem is the fact that you changed</p>
<p>{echo ucwords($_GET['kw']);}</p>
<p>to</p>
<p>{echo htmlentities($_GET['kw']);}</p>
<p>for security reasons? So how can we put &#8216;ucwords&#8217; and &#8216;htmlentities&#8217; together on the same line??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: FourPx</title>
		<link>http://www.semvironment.com/nude-create-dynamic-landing-pages-in-15-minutes-or-less/#comment-9567</link>
		<dc:creator>FourPx</dc:creator>
		<pubDate>Fri, 03 Oct 2008 17:57:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.semvironment.com/nude-create-dynamic-landing-pages-in-15-minutes-or-less/#comment-9567</guid>
		<description>Nice to get useful info from your posts.......I have bookmarked your website for future reference......Being Dynamic is really cool......</description>
		<content:encoded><![CDATA[<p>Nice to get useful info from your posts&#8230;&#8230;.I have bookmarked your website for future reference&#8230;&#8230;Being Dynamic is really cool&#8230;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jameszol</title>
		<link>http://www.semvironment.com/nude-create-dynamic-landing-pages-in-15-minutes-or-less/#comment-8417</link>
		<dc:creator>jameszol</dc:creator>
		<pubDate>Wed, 17 Sep 2008 14:26:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.semvironment.com/nude-create-dynamic-landing-pages-in-15-minutes-or-less/#comment-8417</guid>
		<description>That's strange...should work in php4 and 5. Maybe this will help with formatting?

http://us3.php.net/ucwords

And perhaps you can try using ' instead of " around the string...depends on your document although I doubt that's the problem if it is displaying properly and just not capitalizing the first letter of each word.</description>
		<content:encoded><![CDATA[<p>That&#8217;s strange&#8230;should work in php4 and 5. Maybe this will help with formatting?</p>
<p><a href="http://us3.php.net/ucwords">http://us3.php.net/ucwords</a></p>
<p>And perhaps you can try using &#8216; instead of &#8221; around the string&#8230;depends on your document although I doubt that&#8217;s the problem if it is displaying properly and just not capitalizing the first letter of each word.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JD</title>
		<link>http://www.semvironment.com/nude-create-dynamic-landing-pages-in-15-minutes-or-less/#comment-8387</link>
		<dc:creator>JD</dc:creator>
		<pubDate>Wed, 17 Sep 2008 06:07:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.semvironment.com/nude-create-dynamic-landing-pages-in-15-minutes-or-less/#comment-8387</guid>
		<description>I'm having the same problem with ucwords. First letter of each word in the keyword phrase does not display as uppercase. Here's the code I'm using:



Anyone with a solution??  Thanks.</description>
		<content:encoded><![CDATA[<p>I&#8217;m having the same problem with ucwords. First letter of each word in the keyword phrase does not display as uppercase. Here&#8217;s the code I&#8217;m using:</p>
<p>Anyone with a solution??  Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis</title>
		<link>http://www.semvironment.com/nude-create-dynamic-landing-pages-in-15-minutes-or-less/#comment-3433</link>
		<dc:creator>Dennis</dc:creator>
		<pubDate>Fri, 25 Jul 2008 00:46:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.semvironment.com/nude-create-dynamic-landing-pages-in-15-minutes-or-less/#comment-3433</guid>
		<description>yeah...the ucwords function doesn't make the first letter of my keyphrase uppercase...the php code output the keyphrase but in lowercase only.</description>
		<content:encoded><![CDATA[<p>yeah&#8230;the ucwords function doesn&#8217;t make the first letter of my keyphrase uppercase&#8230;the php code output the keyphrase but in lowercase only.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jameszol</title>
		<link>http://www.semvironment.com/nude-create-dynamic-landing-pages-in-15-minutes-or-less/#comment-3367</link>
		<dc:creator>jameszol</dc:creator>
		<pubDate>Thu, 24 Jul 2008 16:21:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.semvironment.com/nude-create-dynamic-landing-pages-in-15-minutes-or-less/#comment-3367</guid>
		<description>Hi Dennis, ucwords is only supposed to capitalize the first letter of each word in your phrase...is it not doing so? -James</description>
		<content:encoded><![CDATA[<p>Hi Dennis, ucwords is only supposed to capitalize the first letter of each word in your phrase&#8230;is it not doing so? -James</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dennis</title>
		<link>http://www.semvironment.com/nude-create-dynamic-landing-pages-in-15-minutes-or-less/#comment-3361</link>
		<dc:creator>Dennis</dc:creator>
		<pubDate>Thu, 24 Jul 2008 15:12:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.semvironment.com/nude-create-dynamic-landing-pages-in-15-minutes-or-less/#comment-3361</guid>
		<description>Thanks...I rewrote the php code and it worked fine but the "ucwords" doesn't make my keyphrase uppercase. Not sure why though...any suggestions?</description>
		<content:encoded><![CDATA[<p>Thanks&#8230;I rewrote the php code and it worked fine but the &#8220;ucwords&#8221; doesn&#8217;t make my keyphrase uppercase. Not sure why though&#8230;any suggestions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jameszol</title>
		<link>http://www.semvironment.com/nude-create-dynamic-landing-pages-in-15-minutes-or-less/#comment-3212</link>
		<dc:creator>jameszol</dc:creator>
		<pubDate>Wed, 23 Jul 2008 14:52:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.semvironment.com/nude-create-dynamic-landing-pages-in-15-minutes-or-less/#comment-3212</guid>
		<description>Hi Dennis!

Sometimes, rewriting the quote marks will help...for some reason, different browsers copy the wrong quote marks when you copy and paste the code...it's really annoying!

And if that doesn't work, there might be another formatting issue with copying/pasting so simply rewrite the line of code yourself in your favorite text editor.

Please let me know if that helps!

-James</description>
		<content:encoded><![CDATA[<p>Hi Dennis!</p>
<p>Sometimes, rewriting the quote marks will help&#8230;for some reason, different browsers copy the wrong quote marks when you copy and paste the code&#8230;it&#8217;s really annoying!</p>
<p>And if that doesn&#8217;t work, there might be another formatting issue with copying/pasting so simply rewrite the line of code yourself in your favorite text editor.</p>
<p>Please let me know if that helps!</p>
<p>-James</p>
]]></content:encoded>
	</item>
</channel>
</rss>
