<?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 Jon Todd</title>
	<atom:link href="http://www.jontodd.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jontodd.com</link>
	<description>Optimal</description>
	<lastBuildDate>Fri, 20 May 2011 21:14:22 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on Google SEO is ruining the internet by Tom</title>
		<link>http://www.jontodd.com/2006/07/25/google-seo-is-ruining-the-internet/comment-page-1/#comment-40042</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Fri, 20 May 2011 21:14:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.jontodd.com/2006/07/25/google-seo-is-ruining-the-internet/#comment-40042</guid>
		<description>SEO is definitely sucking the life and freedom out of the internet. It&#039;s not enough to simply make a website anymore. You have to pay $$$ to make sure it&#039;s just the way google wants it. Pandering, keyword ridden, robot-friendly webpages, soaring to the top of the rankings. Originality, humanity, punished, 

Someone ought to create an antagonistic force, something to throw all the algorithms off, something to stave off the robots and preserve the randomness, unpredictability and humanity.

It would be the opposite of Google. It would be welcome.</description>
		<content:encoded><![CDATA[<p>SEO is definitely sucking the life and freedom out of the internet. It&#8217;s not enough to simply make a website anymore. You have to pay $$$ to make sure it&#8217;s just the way google wants it. Pandering, keyword ridden, robot-friendly webpages, soaring to the top of the rankings. Originality, humanity, punished, </p>
<p>Someone ought to create an antagonistic force, something to throw all the algorithms off, something to stave off the robots and preserve the randomness, unpredictability and humanity.</p>
<p>It would be the opposite of Google. It would be welcome.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP Session Cookie Multiple Domains by donald</title>
		<link>http://www.jontodd.com/2006/08/10/php-session-cookie-multiple-domains/comment-page-1/#comment-38601</link>
		<dc:creator>donald</dc:creator>
		<pubDate>Thu, 03 Feb 2011 15:16:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.jontodd.com/2006/08/10/php-session-cookie-multiple-domains/#comment-38601</guid>
		<description>Just speculating here, but it seems to me that a management structure to control configured/allowed domains using session.cookie_domain could then establish sessions for each domain for authorized users.  Might represent a fairly high overhead though if users or apps were allowed to freely switch between sessions on various authorized domains.  Still, it would make sense if a user could be authenticated once, then switched to a seesion for an authorized domain for some reasonable length of time before requiring reswitching.</description>
		<content:encoded><![CDATA[<p>Just speculating here, but it seems to me that a management structure to control configured/allowed domains using session.cookie_domain could then establish sessions for each domain for authorized users.  Might represent a fairly high overhead though if users or apps were allowed to freely switch between sessions on various authorized domains.  Still, it would make sense if a user could be authenticated once, then switched to a seesion for an authorized domain for some reasonable length of time before requiring reswitching.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Remove last comma of string in PHP by sNovak</title>
		<link>http://www.jontodd.com/2006/09/11/remove-last-comma-of-string-in-php/comment-page-1/#comment-36639</link>
		<dc:creator>sNovak</dc:creator>
		<pubDate>Thu, 07 Oct 2010 17:20:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.jontodd.com/2006/09/11/remove-last-comma-of-string-in-php/#comment-36639</guid>
		<description>There&#039;s a better way to build that list. Use an array.  ie - 
$something = array();
$something[] = &quot;item&quot;;
$something[] = &quot;item&quot;;
$something[] = &quot;item&quot;;
$something[] = &quot;item&quot;;
implode( &#039;,&#039; , $something);</description>
		<content:encoded><![CDATA[<p>There&#8217;s a better way to build that list. Use an array.  ie &#8211;<br />
$something = array();<br />
$something[] = &#8220;item&#8221;;<br />
$something[] = &#8220;item&#8221;;<br />
$something[] = &#8220;item&#8221;;<br />
$something[] = &#8220;item&#8221;;<br />
implode( &#8216;,&#8217; , $something);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Remove last comma of string in PHP by ashish</title>
		<link>http://www.jontodd.com/2006/09/11/remove-last-comma-of-string-in-php/comment-page-1/#comment-36624</link>
		<dc:creator>ashish</dc:creator>
		<pubDate>Tue, 05 Oct 2010 16:39:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.jontodd.com/2006/09/11/remove-last-comma-of-string-in-php/#comment-36624</guid>
		<description>thanks</description>
		<content:encoded><![CDATA[<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Remove last comma of string in PHP by John</title>
		<link>http://www.jontodd.com/2006/09/11/remove-last-comma-of-string-in-php/comment-page-1/#comment-36425</link>
		<dc:creator>John</dc:creator>
		<pubDate>Mon, 06 Sep 2010 12:46:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.jontodd.com/2006/09/11/remove-last-comma-of-string-in-php/#comment-36425</guid>
		<description>thanks for good info. I prefer  rtrim($str,’,&#039;) because it&#039;s safer.</description>
		<content:encoded><![CDATA[<p>thanks for good info. I prefer  rtrim($str,’,&#8217;) because it&#8217;s safer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP Session Cookie Multiple Domains by Virgil</title>
		<link>http://www.jontodd.com/2006/08/10/php-session-cookie-multiple-domains/comment-page-1/#comment-36361</link>
		<dc:creator>Virgil</dc:creator>
		<pubDate>Thu, 26 Aug 2010 20:08:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.jontodd.com/2006/08/10/php-session-cookie-multiple-domains/#comment-36361</guid>
		<description>God, this saved my butt- I can&#039;t believe there isn&#039;t some mention of this in the PHP online documentation in the section on session variables.  Maybe someone has left a comment in there, but it always seems to be a ton of reading to find any pertinent info in the comments on the manual.

Basically had a issue where I use all kinds of session variables for a shopping cart on a site I developed, and when loading the secure pages from a non-www domain to the cart (which uses the www prefix) the session variables weren&#039;t available.  Added the line to the .htaccess file and voila!   All is happy, no need to modify any php.

thanks so much for a post on what would seem to be a very common problem!</description>
		<content:encoded><![CDATA[<p>God, this saved my butt- I can&#8217;t believe there isn&#8217;t some mention of this in the PHP online documentation in the section on session variables.  Maybe someone has left a comment in there, but it always seems to be a ton of reading to find any pertinent info in the comments on the manual.</p>
<p>Basically had a issue where I use all kinds of session variables for a shopping cart on a site I developed, and when loading the secure pages from a non-www domain to the cart (which uses the www prefix) the session variables weren&#8217;t available.  Added the line to the .htaccess file and voila!   All is happy, no need to modify any php.</p>
<p>thanks so much for a post on what would seem to be a very common problem!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

