<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Tony Virelli - Web Developer - HTML, xHTML, PHP, MySQL, JavaScript&#187; Web Design</title>
	<atom:link href="http://tonyvirelli.com/category/blog/webdesign/feed/" rel="self" type="application/rss+xml" />
	<link>http://tonyvirelli.com</link>
	<description>Tony Virelli - I share the information I have dealing with web design, technology, the internet and more</description>
	<lastBuildDate>Tue, 31 Jan 2012 14:57:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Update Your Website Copyright With Some Simple PHP</title>
		<link>http://tonyvirelli.com/slider/update-your-website-copyright-with-some-simple-php/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=update-your-website-copyright-with-some-simple-php</link>
		<comments>http://tonyvirelli.com/slider/update-your-website-copyright-with-some-simple-php/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 07:00:24 +0000</pubDate>
		<dc:creator>Tony Virelli</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[slider]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[copyright]]></category>
		<category><![CDATA[year]]></category>

		<guid isPermaLink="false">http://tonyvirelli.com/?p=521</guid>
		<description><![CDATA[Ok, so every year web designers have the all dreaded task of updating the copyright on their designs. This isn&#8217;t so bad if you work for 1 company, but if you work for a design firm like I do and have tons of clients websites to update it can be a time eating task. So [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, so every year web designers have the all dreaded task of updating the copyright on their designs. This isn&#8217;t so bad if you work for 1 company, but if you work for a design firm like I do and have tons of clients websites to update it can be a time eating task.<br />
<span id="more-521"></span><br />
So to fix this problem I wrote this super small, super easy bit of code. It&#8217;s nothing special, but it gets the job done.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000088;">$startYear</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">2010</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">//Enter the starting year of the copyright.</span>
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$startYear</span> <span style="color: #339933;">&lt;</span> <span style="color: #990000;">date</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Y&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$startYear</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;-&quot;</span><span style="color: #339933;">.</span><span style="color: #990000;">date</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Y&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #b1b100;">else</span><span style="color: #009900;">&#123;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$startYear</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>And for the function lovers</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000000; font-weight: bold;">function</span> updateCopyright<span style="color: #009900;">&#40;</span><span style="color: #000088;">$startYear</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$startYear</span> <span style="color: #339933;">&lt;</span> <span style="color: #990000;">date</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Y&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
		<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$startYear</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;-&quot;</span><span style="color: #339933;">.</span><span style="color: #990000;">date</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Y&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span><span style="color: #b1b100;">else</span><span style="color: #009900;">&#123;</span>
		<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$startYear</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
//Usage: Copyright &amp;copy; <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> updateCopyright<span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">2010</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span> Company Name</pre></div></div>

<p>There ya go!</p>
<p>Isn&#8217;t making your life easier fun!? I sure think so!</p>
]]></content:encoded>
			<wfw:commentRss>http://tonyvirelli.com/slider/update-your-website-copyright-with-some-simple-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Iconfinder &#8211; Great Source For Open Source Icons</title>
		<link>http://tonyvirelli.com/slider/iconfinder-great-source-for-open-source-icons/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=iconfinder-great-source-for-open-source-icons</link>
		<comments>http://tonyvirelli.com/slider/iconfinder-great-source-for-open-source-icons/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 20:57:46 +0000</pubDate>
		<dc:creator>Tony Virelli</dc:creator>
				<category><![CDATA[slider]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[icon]]></category>

		<guid isPermaLink="false">http://tonyvirelli.com/?p=243</guid>
		<description><![CDATA[Iconfinder provides high quality icons for web designers and developers in an easy and efficient way. You can either search by keyword, browse individual icons, or entire icon sets! I use Iconfinder.net whenever I need icons for a back-end design or web application. Vist Iconfinder.net for more information!]]></description>
			<content:encoded><![CDATA[<p>Iconfinder provides high quality icons for web designers and developers in an easy and efficient way. You can either search by keyword, browse individual icons, or entire icon sets! I use <a href="http://iconfinder.net">Iconfinder.net</a> whenever I need icons for a back-end design or web application.</p>
<p>Vist <a href="http://iconfinder.net/">Iconfinder.net</a> for more information!</p>
]]></content:encoded>
			<wfw:commentRss>http://tonyvirelli.com/slider/iconfinder-great-source-for-open-source-icons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add Content To Your Site During Development</title>
		<link>http://tonyvirelli.com/slider/add-content-to-your-site-during-development/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=add-content-to-your-site-during-development</link>
		<comments>http://tonyvirelli.com/slider/add-content-to-your-site-during-development/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 19:31:46 +0000</pubDate>
		<dc:creator>Tony Virelli</dc:creator>
				<category><![CDATA[slider]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Lorem Ipsum]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[words]]></category>

		<guid isPermaLink="false">http://tonyvirelli.com/?p=239</guid>
		<description><![CDATA[If you&#8217;re like me you can&#8217;t stand to cut up a design only have it look like junk due to no content. Sometimes you just need content to help fill in the cracks. The old stand by for this is good old Lorem Ipsum! Most people are accustom to seeing Lorem Ipsum if they have [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re like me you can&#8217;t stand to cut up a design only have it look like junk due to no content. Sometimes you just need content to help fill in the cracks. The old stand by for this is good old <a href="http://www.lipsum.com/"><em><strong>Lorem Ipsum</strong></em></a>!</p>
<p>Most people are accustom to seeing <a href="http://www.lipsum.com/">Lorem Ipsum</a> if they have ever worked in the design industry, print industry or if they have ever bought a website template.</p>
<p>You can even go to <a href="http://www.lipsum.com/">http://www.lipsum.com/</a> to use the generator to get a specific number of paragraphs, words, bytes or list of <a href="http://www.lipsum.com/">Lorem Ipsum</a> content.<br />
<span id="more-239"></span><br />
However, if you find <a href="http://www.lipsum.com/">Lorem Ipsum</a> to be &#8220;passe&#8221; then here are some alternatives you might like:</p>
<p><strong>TEXT|GENERATOR </strong>by <a href="http://www.malevole.com/mv/misc/text/">http://www.malevole.com</a><br />
<em>&#8220;<span style="font-family: georgia,'times new roman',times,serif; font-size: 13px;">This text generator has been developed based on years of careful research and is guaranteed to improve even the most lacklustre of designs.&#8221;</span></em></p>
<p><strong>adhesiontext </strong>by <a href="http://www.adhesiontext.com/">http://www.adhesiontext.com</a><br />
<em>&#8220;A text tool that generates dummy text, with a limited set of characters, for English, French, German, Spanish, Portuguese, Catalan, Russian and Greek.&#8221;</em></p>
<p><strong>HintPlus+</strong> by <a href="http://www.hintplus.com/alterlorem.php">http://www.hintplus.com</a><br />
<em>&#8220;This project is created for sole purpose as an alternate to Lorem Ipsum dummy text for publishing templates.&#8221;</em></p>
]]></content:encoded>
			<wfw:commentRss>http://tonyvirelli.com/slider/add-content-to-your-site-during-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

