<?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: Print the current year for copyright notices</title>
	<atom:link href="http://www.tech-recipes.com/rx/2815/php_print_the_current_year_for_copyright_notices/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tech-recipes.com/rx/2815/php_print_the_current_year_for_copyright_notices/</link>
	<description>Computer and technology tutorials and guides</description>
	<lastBuildDate>Fri, 10 Feb 2012 12:22:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Shan</title>
		<link>http://www.tech-recipes.com/rx/2815/php_print_the_current_year_for_copyright_notices/comment-page-1/#comment-45475</link>
		<dc:creator>Shan</dc:creator>
		<pubDate>Wed, 12 Jan 2011 11:38:00 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-45475</guid>
		<description>Cool :)</description>
		<content:encoded><![CDATA[<p>Cool :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Bigler</title>
		<link>http://www.tech-recipes.com/rx/2815/php_print_the_current_year_for_copyright_notices/comment-page-1/#comment-40233</link>
		<dc:creator>Chris Bigler</dc:creator>
		<pubDate>Tue, 29 Jun 2010 03:34:00 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-40233</guid>
		<description> would be your &#039;custom variable&#039; from an included config file where site = your site name / company name</description>
		<content:encoded><![CDATA[<p>would be your &#8216;custom variable&#8217; from an included config file where site = your site name / company name</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Bigler</title>
		<link>http://www.tech-recipes.com/rx/2815/php_print_the_current_year_for_copyright_notices/comment-page-1/#comment-40232</link>
		<dc:creator>Chris Bigler</dc:creator>
		<pubDate>Tue, 29 Jun 2010 03:33:00 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-40232</guid>
		<description>You could also use an if else to post the originating copyright year -through- to the current year, like this:
Copyright &#169;  . All rights reserved.</description>
		<content:encoded><![CDATA[<p>You could also use an if else to post the originating copyright year -through- to the current year, like this:<br />
Copyright &copy;  . All rights reserved.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: webb</title>
		<link>http://www.tech-recipes.com/rx/2815/php_print_the_current_year_for_copyright_notices/comment-page-1/#comment-36703</link>
		<dc:creator>webb</dc:creator>
		<pubDate>Sun, 10 Jan 2010 14:36:00 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-36703</guid>
		<description>wonderful tutorial</description>
		<content:encoded><![CDATA[<p>wonderful tutorial</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flight</title>
		<link>http://www.tech-recipes.com/rx/2815/php_print_the_current_year_for_copyright_notices/comment-page-1/#comment-35602</link>
		<dc:creator>Flight</dc:creator>
		<pubDate>Thu, 12 Nov 2009 02:41:00 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-35602</guid>
		<description>thanks for your tip</description>
		<content:encoded><![CDATA[<p>thanks for your tip</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Emil</title>
		<link>http://www.tech-recipes.com/rx/2815/php_print_the_current_year_for_copyright_notices/comment-page-1/#comment-28645</link>
		<dc:creator>Emil</dc:creator>
		<pubDate>Thu, 12 Mar 2009 20:55:00 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-28645</guid>
		<description>How about only this:

&#169; </description>
		<content:encoded><![CDATA[<p>How about only this:</p>
<p>&copy;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: veonexus</title>
		<link>http://www.tech-recipes.com/rx/2815/php_print_the_current_year_for_copyright_notices/comment-page-1/#comment-27292</link>
		<dc:creator>veonexus</dc:creator>
		<pubDate>Fri, 23 Jan 2009 21:59:00 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-27292</guid>
		<description> if in html, so:

&#169; 
</description>
		<content:encoded><![CDATA[<p>if in html, so:</p>
<p>&copy;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam IT</title>
		<link>http://www.tech-recipes.com/rx/2815/php_print_the_current_year_for_copyright_notices/comment-page-1/#comment-26037</link>
		<dc:creator>Sam IT</dc:creator>
		<pubDate>Wed, 17 Dec 2008 05:49:00 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-26037</guid>
		<description>Why so many echos?

Use one echo

echo &#039;&#169; &#039; . date(&#039;Y&#039;);

or

sprintf( &#039;Copyright &#169; %s - All right reserved.&#039;, date(&#039;Y&#039;) );</description>
		<content:encoded><![CDATA[<p>Why so many echos?</p>
<p>Use one echo</p>
<p>echo &#8216;&copy; &#8216; . date(&#8216;Y&#8217;);</p>
<p>or</p>
<p>sprintf( &#8216;Copyright &copy; %s &#8211; All right reserved.&#8217;, date(&#8216;Y&#8217;) );</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached (User agent is rejected)
Database Caching using memcached
Object Caching 386/399 objects using memcached

Served from: www.tech-recipes.com @ 2012-02-10 06:29:32 -->
