<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Jiv Studio</title>
	
	<link>http://jivstudio.com</link>
	<description>Wordpress Themes and Development, X-cart Development</description>
	<lastBuildDate>Thu, 02 Dec 2010 18:07:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/jivstudio" /><feedburner:info uri="jivstudio" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>jivstudio</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Show Only Parent Categories on WordPress Archives</title>
		<link>http://feedproxy.google.com/~r/jivstudio/~3/JWCwp40NeAI/</link>
		<comments>http://jivstudio.com/2010/12/02/show-only-parent-categories-on-wordpress-archives/#comments</comments>
		<pubDate>Thu, 02 Dec 2010 18:06:48 +0000</pubDate>
		<dc:creator>Jason Maletsky</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://jivstudio.com/?p=1006</guid>
		<description><![CDATA[Show only the parent category for the archive the user is currently viewing. It will not show any child categories.]]></description>
			<content:encoded><![CDATA[<p>Show only the parent category for the archive the user is currently viewing. It will not show any child categories.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #666666; font-style: italic;">// Get the current category</span>
<span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span>get_the_category<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$category</span><span style="color: #009900;">&#41;</span> 
<span style="color: #009900;">&#123;</span> 
	<span style="color: #000088;">$current_cat_id</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$category</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">cat_ID</span><span style="color: #339933;">;</span> 
	<span style="color: #b1b100;">break</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// Set the category to only the category selected</span>
<span style="color: #000088;">$args</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
	<span style="color: #0000ff;">'category__in'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$current_cat_id</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'orderby'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'date'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'order'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'DESC'</span>
<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$posts</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> WP_Query<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$posts</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">query</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$args</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$posts</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">have_posts</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
	<span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$posts</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">have_posts</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>
		<span style="color: #000088;">$posts</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">the_post</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #000000; font-weight: bold;">?&gt;</span> 
		&lt;h3&gt;&lt;a href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/a&gt;&lt;/h3&gt;
&nbsp;
		&lt;p&gt;
			<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_content<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
		&lt;/p&gt;
		<span style="color: #000000; font-weight: bold;">&lt;?php</span> 
	<span style="color: #009900;">&#125;</span>	
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// Reset global query</span>
wp_reset_query<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>


<p><a href="http://feedads.g.doubleclick.net/~a/PnOzupJWjVBO5-2a3zgnwmSR1bM/0/da"><img src="http://feedads.g.doubleclick.net/~a/PnOzupJWjVBO5-2a3zgnwmSR1bM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/PnOzupJWjVBO5-2a3zgnwmSR1bM/1/da"><img src="http://feedads.g.doubleclick.net/~a/PnOzupJWjVBO5-2a3zgnwmSR1bM/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/jivstudio/~4/JWCwp40NeAI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jivstudio.com/2010/12/02/show-only-parent-categories-on-wordpress-archives/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jivstudio.com/2010/12/02/show-only-parent-categories-on-wordpress-archives/</feedburner:origLink></item>
		<item>
		<title>October Book Giveaway “Designing Without Tables Using CSS”</title>
		<link>http://feedproxy.google.com/~r/jivstudio/~3/p75l_LElLU8/</link>
		<comments>http://jivstudio.com/2010/10/04/october-book-giveaway-designing-without-tables-using-css/#comments</comments>
		<pubDate>Mon, 04 Oct 2010 22:56:51 +0000</pubDate>
		<dc:creator>jivaddy</dc:creator>
				<category><![CDATA[Giveaways]]></category>

		<guid isPermaLink="false">http://jivstudio.com/?p=996</guid>
		<description><![CDATA[Join my newsletter list by entering your email address to the right to enter to win a FREE copy of &#8220;HTML Utopia: Designing Without Tables Using CSS&#8221; from Sitepoint. Contest ends 10/15/2010 and the winner will be picked by random. You must have a  United States address to enter. Will only ship to United States [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://jivstudio.com/wp-content/uploads/2010/10/3d.png"><img class="alignleft size-full wp-image-997" title="3d" src="http://jivstudio.com/wp-content/uploads/2010/10/3d.png" alt="" width="168" height="241" /></a>Join my newsletter list by entering your email address to the right to enter to win a FREE copy of &#8220;HTML Utopia: Designing Without Tables Using CSS&#8221; from Sitepoint.</p>
<p>Contest ends <strong>10/15/2010</strong> <strong></strong> and the winner will be picked by random. You must have  a  United States address to enter. Will only ship to United States  addresses.</p>
<p><em>FYI: The <a href="http://jivstudio.com/2010/09/15/free-book-giveaway/">September book giveaway</a> is still up for grabs. The next person to subscribe to my newsletter will receive a free copy of &#8220;The Principles of Beautiful Web Design&#8221; from Sitepoint and be entered to win a copy of &#8220;HTML Utopia: Designing Without Tables Using CSS&#8221; from Sitepoint.</em></p>

<p><a href="http://feedads.g.doubleclick.net/~a/nAxF_ZRYUl0b3Lc5PiXDeG3tdI8/0/da"><img src="http://feedads.g.doubleclick.net/~a/nAxF_ZRYUl0b3Lc5PiXDeG3tdI8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/nAxF_ZRYUl0b3Lc5PiXDeG3tdI8/1/da"><img src="http://feedads.g.doubleclick.net/~a/nAxF_ZRYUl0b3Lc5PiXDeG3tdI8/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/jivstudio/~4/p75l_LElLU8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jivstudio.com/2010/10/04/october-book-giveaway-designing-without-tables-using-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jivstudio.com/2010/10/04/october-book-giveaway-designing-without-tables-using-css/</feedburner:origLink></item>
		<item>
		<title>Tracking your Website Traffic with Google Analytics</title>
		<link>http://feedproxy.google.com/~r/jivstudio/~3/BUODlmgGloQ/</link>
		<comments>http://jivstudio.com/2010/09/25/tracking-your-website-traffic-with-google-analytics/#comments</comments>
		<pubDate>Sat, 25 Sep 2010 16:33:09 +0000</pubDate>
		<dc:creator>jivaddy</dc:creator>
				<category><![CDATA[Small Business]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://jivstudio.com/?p=966</guid>
		<description><![CDATA[You launched your website,  getting conversions, but if you don&#8217;t have a method for reporting traffic trends you don&#8217;t know what works and what doesn&#8217;t. Google Analytics is a great free tool that can help with traffic reports and much more. How do I get Google Analytics? Google uses single sign-on for all of their [...]]]></description>
			<content:encoded><![CDATA[<p>You launched your website,  getting conversions, but if you don&#8217;t have a method for reporting traffic trends you don&#8217;t know what works and what doesn&#8217;t. Google Analytics is a great free tool that can help with traffic reports and much more.</p>
<h3>How do I get Google Analytics?</h3>
<p>Google uses single sign-on for all of their services so if you already have a Gmail or Google account you can sign in with those credentials. If not create an account by click on the link below.</p>
<p><a href="http://www.google.com/analytics/" target="_blank">http://www.google.com/analytics/</a></p>
<h3>I signed up, now what?</h3>
<p>After you have your Google account and sign in to <a href="http://www.google.com/analytics/" target="_blank">Google Analytics</a> you will be prompted to enter your website information.</p>
<p><img class="aligncenter size-full wp-image-970" title="ga-1" src="http://jivstudio.com/wp-content/uploads/2010/09/ga-1.png" alt="" width="525" height="246" /></p>
<p>Once you have filled out the other forms the Google Analytics code page will appear with the Javascript necessary for Google Analytics to work properly. If you are NOT using WordPress for your website you can copy the entire block of code and paste to the footer of each page right above the &lt;/body&gt; tag.</p>
<p><strong>WordPress Users</strong></p>
<p>If you are using WordPress I wrote a plugin to insert the Google Analytics code without editing your theme. You will need the code highlighted in red without the tick marks. Should start with UA.</p>
<p><a href="http://jivstudio.com/2010/09/25/google-analytics-wordpress-plugin/" target="_blank">Download the Jiv Google Analytics WordPress Plugin</a></p>
<p><img class="aligncenter size-full wp-image-974" title="ga-2" src="http://jivstudio.com/wp-content/uploads/2010/09/ga-2.png" alt="" width="509" height="366" /></p>

<p><a href="http://feedads.g.doubleclick.net/~a/ku0Hi92ttk7Ya2RsZfW6u8nHGOs/0/da"><img src="http://feedads.g.doubleclick.net/~a/ku0Hi92ttk7Ya2RsZfW6u8nHGOs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ku0Hi92ttk7Ya2RsZfW6u8nHGOs/1/da"><img src="http://feedads.g.doubleclick.net/~a/ku0Hi92ttk7Ya2RsZfW6u8nHGOs/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/jivstudio/~4/BUODlmgGloQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jivstudio.com/2010/09/25/tracking-your-website-traffic-with-google-analytics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jivstudio.com/2010/09/25/tracking-your-website-traffic-with-google-analytics/</feedburner:origLink></item>
		<item>
		<title>Google Analytics WordPress Plugin</title>
		<link>http://feedproxy.google.com/~r/jivstudio/~3/NbHo6Lin7wI/</link>
		<comments>http://jivstudio.com/2010/09/25/google-analytics-wordpress-plugin/#comments</comments>
		<pubDate>Sat, 25 Sep 2010 16:29:26 +0000</pubDate>
		<dc:creator>jivaddy</dc:creator>
				<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://jivstudio.com/?p=980</guid>
		<description><![CDATA[This plugin will enter the Google Analytics code into the wp_footer() section of your theme. If you need to get your Google Analytics Code for the options page please read the following article for instructions. Tracking Your Website Traffic with Google Analytics Download Plugin Jiv Google Analytics Installation Unzip jiv-google-analytics.zip Upload the jiv-google-analytics folder to [...]]]></description>
			<content:encoded><![CDATA[<p>This plugin will enter the Google Analytics code into the wp_footer() section of your theme. If you need to get your Google Analytics Code for the options page please read the following article for instructions.</p>
<p><a href="http://jivstudio.com/2010/09/25/tracking-your-website-traffic-with-google-analytics/" target="_blank">Tracking Your Website Traffic with Google Analytics</a></p>
<h3>Download Plugin</h3>
<p><strong><a href="http://jivstudio.com/wp-content/uploads/2010/09/jiv-google-analytics.zip">Jiv Google Analytics</a></strong></p>
<h3>Installation<strong></strong></h3>
<ol>
<li>Unzip jiv-google-analytics.zip</li>
<li>Upload the jiv-google-analytics folder to the `/wp-content/plugins/` directory.</li>
<li>Go to the Plugins page in WordPress Admin.</li>
<li>Click on activate next to Jiv Google Analytics.</li>
<li>Find your Google Analytics Code by reading http://jivstudio.com/2010/09/25/tracking-your-website-traffic-with-google-analytics/</li>
<li>Click on Jiv Google Analytics under settings in WordPress Admin.</li>
<li>After entering your code and saving open your website and review the source code (HTML). You should see the Google Analytics code near the bottom. DONE!</li>
</ol>
<h3>Support</h3>
<p>Please leave comments here and I will respond as soon as I can.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/fRVMOhgeK66VlQ2UtIKPy9IvsPE/0/da"><img src="http://feedads.g.doubleclick.net/~a/fRVMOhgeK66VlQ2UtIKPy9IvsPE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/fRVMOhgeK66VlQ2UtIKPy9IvsPE/1/da"><img src="http://feedads.g.doubleclick.net/~a/fRVMOhgeK66VlQ2UtIKPy9IvsPE/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/jivstudio/~4/NbHo6Lin7wI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jivstudio.com/2010/09/25/google-analytics-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://jivstudio.com/2010/09/25/google-analytics-wordpress-plugin/</feedburner:origLink></item>
		<item>
		<title>The Importance of a Great Headshot</title>
		<link>http://feedproxy.google.com/~r/jivstudio/~3/lo96i1GSEVk/</link>
		<comments>http://jivstudio.com/2010/09/20/the-importance-of-a-great-headshot/#comments</comments>
		<pubDate>Tue, 21 Sep 2010 06:15:35 +0000</pubDate>
		<dc:creator>jivaddy</dc:creator>
				<category><![CDATA[Small Business]]></category>

		<guid isPermaLink="false">http://jivstudio.com/?p=948</guid>
		<description><![CDATA[A great headshot says a lot about you and your business. If you want to show that you are serious about your business and exude professionalism headshots say just that without saying anything. Take my own headshot for example. Here is a before and after I had my headshot done by a professional. Yes, the [...]]]></description>
			<content:encoded><![CDATA[<p>A great headshot says a lot about you and your business. If you want to show that you are serious about your business and exude professionalism headshots say just that without saying anything.</p>
<p>Take my own headshot for example. Here is a before and after I had my headshot done by a professional. Yes, the first photo is goofy but you get the idea.</p>
<p><a href="http://jivstudio.com/wp-content/uploads/2010/09/headshots.jpg"><img class="aligncenter size-full wp-image-950" title="headshots" src="http://jivstudio.com/wp-content/uploads/2010/09/headshots.jpg" alt="" width="594" height="175" /></a></p>
<p>My recommendation to any business owner is to spend the extra money for professional headshots for the final touch for your bios on your &#8220;About Us&#8221; section on your website.</p>
<p><a href="http://www.waynewallacephotography.com/" target="_blank">Wayne Wallace</a> took my headshot. I have worked with him in the past and he is one the best photographers you will ever encounter. Professional, cordial and an expert. Give him a call to schedule your headshot!</p>
<p><a href="http://www.waynewallacephotography.com/" target="_blank"><img class="size-full wp-image-992" title="wwp-logo" src="http://jivstudio.com/wp-content/uploads/2010/09/wwp-logo.gif" alt="" width="200" height="55" /></a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/ZO6MZQgpT81STK-l2uYnNFIEFRU/0/da"><img src="http://feedads.g.doubleclick.net/~a/ZO6MZQgpT81STK-l2uYnNFIEFRU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ZO6MZQgpT81STK-l2uYnNFIEFRU/1/da"><img src="http://feedads.g.doubleclick.net/~a/ZO6MZQgpT81STK-l2uYnNFIEFRU/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/jivstudio/~4/lo96i1GSEVk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jivstudio.com/2010/09/20/the-importance-of-a-great-headshot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jivstudio.com/2010/09/20/the-importance-of-a-great-headshot/</feedburner:origLink></item>
		<item>
		<title>Free Book Giveaway – The Principles of Beautiful Web Design</title>
		<link>http://feedproxy.google.com/~r/jivstudio/~3/1JYi7JtFW0g/</link>
		<comments>http://jivstudio.com/2010/09/15/free-book-giveaway/#comments</comments>
		<pubDate>Wed, 15 Sep 2010 15:39:23 +0000</pubDate>
		<dc:creator>jivaddy</dc:creator>
				<category><![CDATA[Giveaways]]></category>

		<guid isPermaLink="false">http://jivstudio.com/?p=939</guid>
		<description><![CDATA[To celebrate the launch of my new site I&#8217;m giving away my copy of &#8220;The Principles of Beautiful Web Design&#8221; from Sitepoint. All you need to do is join my mailing list by entering your email address to the right. Contest ends 9/22/2010 and the winner will be picked by random. You must have a  [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://jivstudio.com/wp-content/uploads/2010/09/cover.png"><img class="alignleft size-full wp-image-940" title="cover" src="http://jivstudio.com/wp-content/uploads/2010/09/cover.png" alt="" width="122" height="159" /></a>To celebrate the launch of my new site I&#8217;m giving away my copy of &#8220;The Principles of Beautiful Web Design&#8221; from Sitepoint. All you need to do is join my mailing list by entering your email address to the right.</p>
<p>Contest ends <strong>9/22/2010</strong> and the winner will be picked by random. You must have a  United States address to enter. Will only ship to United States addresses.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/4Tc9gl_uHs1Noa3tnSs9y6JFpVo/0/da"><img src="http://feedads.g.doubleclick.net/~a/4Tc9gl_uHs1Noa3tnSs9y6JFpVo/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/4Tc9gl_uHs1Noa3tnSs9y6JFpVo/1/da"><img src="http://feedads.g.doubleclick.net/~a/4Tc9gl_uHs1Noa3tnSs9y6JFpVo/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/jivstudio/~4/1JYi7JtFW0g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jivstudio.com/2010/09/15/free-book-giveaway/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://jivstudio.com/2010/09/15/free-book-giveaway/</feedburner:origLink></item>
		<item>
		<title>PHP United States State Array</title>
		<link>http://feedproxy.google.com/~r/jivstudio/~3/iwkyUcjE-xo/</link>
		<comments>http://jivstudio.com/2010/09/15/php-united-states-state-array/#comments</comments>
		<pubDate>Wed, 15 Sep 2010 15:12:12 +0000</pubDate>
		<dc:creator>Jason Maletsky</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://jivstudio.com/?p=935</guid>
		<description><![CDATA[For those forms when you need a state dropdown. Includes a &#60;select&#62; example.]]></description>
			<content:encoded><![CDATA[
<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> 
<span style="color: #000088;">$items</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
    <span style="color: #0000ff;">'AL'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Alabama'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'AK'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Alaska'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'AZ'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Arizona'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'AR'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Arkansas'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'CA'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'California'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'CO'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Colorado'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'CT'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Connecticut'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'DE'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Delaware'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'DC'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'District Of Columbia'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'FL'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Florida'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'GA'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Georgia'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'HI'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Hawaii'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'ID'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Idaho'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'IL'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Illinois'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'IN'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Indiana'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'IA'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Iowa'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'KS'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Kansas'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'KY'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Kentucky'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'LA'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Louisiana'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'ME'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Maine'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'MD'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Maryland'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'MA'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Massachusetts'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'MI'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Michigan'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'MN'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Minnesota'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'MS'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Mississippi'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'MO'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Missouri'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'MT'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Montana'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'NE'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Nebraska'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'NV'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Nevada'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'NH'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'New Hampshire'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'NJ'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'New Jersey'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'NM'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'New Mexico'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'NY'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'New York'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'NC'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'North Carolina'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'ND'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'North Dakota'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'OH'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Ohio'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'OK'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Oklahoma'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'OR'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Oregon'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'PA'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Pennsylvania'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'RI'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Rhode Island'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'SC'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'South Carolina'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'SD'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'South Dakota'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'TN'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Tennessee'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'TX'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Texas'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'UT'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Utah'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'VT'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Vermont'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'VA'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Virginia'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'WA'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Washington'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'WV'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'West Virginia'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'WI'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Wisconsin'</span><span style="color: #339933;">,</span>
    <span style="color: #0000ff;">'WY'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Wyoming'</span>
<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;select name=&quot;state&quot;&gt;
    &lt;option&gt;&lt;/option&gt;
    <span style="color: #000000; font-weight: bold;">&lt;?php</span> 
    <span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$items</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$key</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$val</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
        <span style="color: #000000; font-weight: bold;">?&gt;</span> 
        &lt;option value=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$key</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$_POST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'state'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">==</span> <span style="color: #000088;">$key</span><span style="color: #009900;">&#41;</span> ? <span style="color: #0000ff;">'selected=&quot;&quot;'</span> <span style="color: #339933;">:</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$val</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/option&gt;
        <span style="color: #000000; font-weight: bold;">&lt;?php</span> 
    <span style="color: #009900;">&#125;</span>
    <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;/select&gt;</pre></td></tr></table></div>


<p><a href="http://feedads.g.doubleclick.net/~a/6zQuixni0NA5mCjuF4_18IK5WGU/0/da"><img src="http://feedads.g.doubleclick.net/~a/6zQuixni0NA5mCjuF4_18IK5WGU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/6zQuixni0NA5mCjuF4_18IK5WGU/1/da"><img src="http://feedads.g.doubleclick.net/~a/6zQuixni0NA5mCjuF4_18IK5WGU/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/jivstudio/~4/iwkyUcjE-xo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jivstudio.com/2010/09/15/php-united-states-state-array/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jivstudio.com/2010/09/15/php-united-states-state-array/</feedburner:origLink></item>
		<item>
		<title>Send HTML Email with PHP and mail()</title>
		<link>http://feedproxy.google.com/~r/jivstudio/~3/7WKJkzQ7gqo/</link>
		<comments>http://jivstudio.com/2010/01/25/send-html-email-with-php-and-mail/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 21:52:39 +0000</pubDate>
		<dc:creator>Jason Maletsky</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">/?p=858</guid>
		<description><![CDATA[The PHP mail() function is great for sending plain text emails but it will not send HTML emails without special headers. This article will show you a quick example how to send HTML emails with PHP.]]></description>
			<content:encoded><![CDATA[<p>The PHP <a href="http://us2.php.net/manual/en/function.mail.php" target="_blank">mail()</a> function is great for sending plain text emails but it will not send HTML emails without special headers.</p>
<p>Here is a PHP mail() with HTML example:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$body_html</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'
	&lt;html&gt;
		&lt;head&gt;
			&lt;title&gt;HTML Test Email&lt;/title&gt;
			&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;&gt;
		&lt;/head&gt;
		&lt;body&gt;
			&lt;p&gt;
				This is a test.
			&lt;/p&gt;
		&lt;/body&gt;
	&lt;/html&gt;
'</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$from</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'sender@example.com'</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$to</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'recipient@example.com'</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$subject</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'HTML Test Email'</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$headers</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;From:<span style="color: #006699; font-weight: bold;">$from</span><span style="color: #000099; font-weight: bold;">\n</span>&quot;</span> <span style="color: #339933;">.</span>
    <span style="color: #0000ff;">&quot;MIME-Version: 1.0<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span> <span style="color: #339933;">.</span>
    <span style="color: #0000ff;">&quot;Content-type: text/html; charset=iso-8859-1&quot;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #990000;">mail</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$to</span><span style="color: #339933;">,</span> <span style="color: #000088;">$subject</span><span style="color: #339933;">,</span> <span style="color: #000088;">$body_html</span><span style="color: #339933;">,</span> <span style="color: #000088;">$headers</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<h3>Demo</h3>
<p><a href="/demos/php-html-email/php-html-email.php" target="_blank">Demo Send HTML Email with PHP and mail()</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/i6LzGQE8rU3Xw9euKQHMUAwnTLk/0/da"><img src="http://feedads.g.doubleclick.net/~a/i6LzGQE8rU3Xw9euKQHMUAwnTLk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/i6LzGQE8rU3Xw9euKQHMUAwnTLk/1/da"><img src="http://feedads.g.doubleclick.net/~a/i6LzGQE8rU3Xw9euKQHMUAwnTLk/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/jivstudio/~4/7WKJkzQ7gqo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jivstudio.com/2010/01/25/send-html-email-with-php-and-mail/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://jivstudio.com/2010/01/25/send-html-email-with-php-and-mail/</feedburner:origLink></item>
		<item>
		<title>PHP Country Array</title>
		<link>http://feedproxy.google.com/~r/jivstudio/~3/8itRJB-l0rk/</link>
		<comments>http://jivstudio.com/2010/01/24/php-country-array/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 16:32:22 +0000</pubDate>
		<dc:creator>Jason Maletsky</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[country]]></category>

		<guid isPermaLink="false">/?p=848</guid>
		<description><![CDATA[This script includes an array of countries you can use in your PHP forms. I also included a select example that uses the same array to help speed up your development.]]></description>
			<content:encoded><![CDATA[
<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$options</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
	<span style="color: #0000ff;">'AF'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Afghanistan'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'AL'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Albania'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'DZ'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Algeria'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'AS'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'American Samoa'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'AD'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Andorra'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'AO'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Angola'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'AI'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Anguilla'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'AQ'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Antarctica'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'AG'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Antigua and Barbuda'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'AR'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Argentina'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'AM'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Armenia'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'AW'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Aruba'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'AU'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Australia'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'AT'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Austria'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'AZ'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Azerbaijan'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'BS'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Bahamas'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'BH'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Bahrain'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'BD'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Bangladesh'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'BB'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Barbados'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'BY'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Belarus'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'BE'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Belgium'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'BZ'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Belize'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'BJ'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Benin'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'BM'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Bermuda'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'BT'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Bhutan'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'BO'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Bolivia'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'BA'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Bosnia and Herzegowina'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'BW'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Botswana'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'BV'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Bouvet Island'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'BR'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Brazil'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'IO'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'British Indian Ocean Territory'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'VG'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'British Virgin Islands'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'BN'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Brunei Darussalam'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'BG'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Bulgaria'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'BF'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Burkina Faso'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'BI'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Burundi'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'KH'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Cambodia'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'CM'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Cameroon'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'CA'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Canada'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'CV'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Cape Verde'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'KY'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Cayman Islands'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'CF'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Central African Republic'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'TD'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Chad'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'CL'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Chile'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'CN'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'China'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'CX'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Christmas Island'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'CC'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Cocos (Keeling) Islands'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'CO'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Colombia'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'KM'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Comoros'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'CG'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Congo'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'CK'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Cook Islands'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'CR'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Costa Rica'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'CI'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Cote D\'ivoire'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'HR'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Croatia'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'CU'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Cuba'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'CY'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Cyprus'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'CZ'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Czech Republic'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'DK'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Denmark'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'DJ'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Djibouti'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'DM'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Dominica'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'DO'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Dominican Republic'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'TP'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'East Timor'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'EC'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Ecuador'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'EG'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Egypt'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'SV'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'El Salvador'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'GQ'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Equatorial Guinea'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'ER'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Eritrea'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'EE'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Estonia'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'ET'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Ethiopia'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'FK'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Falkland Islands (Malvinas)'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'FO'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Faroe Islands'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'FJ'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Fiji'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'FI'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Finland'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'FR'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'France'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'GF'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'French Guiana'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'PF'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'French Polynesia'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'TF'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'French Southern Territories'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'GA'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Gabon'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'GM'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Gambia'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'GE'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Georgia'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'DE'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Germany'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'GH'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Ghana'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'GI'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Gibraltar'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'GR'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Greece'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'GL'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Greenland'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'GD'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Grenada'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'GP'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Guadeloupe'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'GU'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Guam'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'GT'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Guatemala'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'GN'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Guinea'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'GW'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Guinea-Bissau'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'GY'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Guyana'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'HT'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Haiti'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'HM'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Heard and McDonald Islands'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'HN'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Honduras'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'HK'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Hong Kong'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'HU'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Hungary'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'IS'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Iceland'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'IN'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'India'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'ID'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Indonesia'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'IQ'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Iraq'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'IE'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Ireland'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'IR'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Islamic Republic of Iran'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'IL'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Israel'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'IT'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Italy'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'JM'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Jamaica'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'JP'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Japan'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'JO'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Jordan'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'KZ'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Kazakhstan'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'KE'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Kenya'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'KI'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Kiribati'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'KP'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Korea'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'KR'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Korea, Republic of'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'KW'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Kuwait'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'KG'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Kyrgyzstan'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'LA'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Laos'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'LV'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Latvia'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'LB'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Lebanon'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'LS'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Lesotho'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'LR'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Liberia'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'LY'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Libyan Arab Jamahiriya'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'LI'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Liechtenstein'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'LT'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Lithuania'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'LU'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Luxembourg'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'MO'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Macau'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'MK'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Macedonia'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'MG'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Madagascar'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'MW'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Malawi'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'MY'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Malaysia'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'MV'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Maldives'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'ML'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Mali'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'MT'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Malta'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'MH'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Marshall Islands'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'MQ'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Martinique'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'MR'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Mauritania'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'MU'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Mauritius'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'YT'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Mayotte'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'MX'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Mexico'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'FM'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Micronesia'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'MD'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Moldova, Republic of'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'MC'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Monaco'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'MN'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Mongolia'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'MS'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Montserrat'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'MA'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Morocco'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'MZ'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Mozambique'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'MM'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Myanmar'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'NA'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Namibia'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'NR'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Nauru'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'NP'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Nepal'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'NL'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Netherlands'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'AN'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Netherlands Antilles'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'NC'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'New Caledonia'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'NZ'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'New Zealand'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'NI'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Nicaragua'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'NE'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Niger'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'NG'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Nigeria'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'NU'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Niue'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'NF'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Norfolk Island'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'MP'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Northern Mariana Islands'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'NO'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Norway'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'OM'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Oman'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'PK'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Pakistan'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'PW'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Palau'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'PA'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Panama'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'PG'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Papua New Guinea'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'PY'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Paraguay'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'PE'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Peru'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'PH'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Philippines'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'PN'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Pitcairn'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'PL'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Poland'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'PT'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Portugal'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'PR'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Puerto Rico'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'QA'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Qatar'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'RE'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Reunion'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'RO'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Romania'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'RU'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Russian Federation'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'RW'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Rwanda'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'LC'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Saint Lucia'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'WS'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Samoa'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'SM'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'San Marino'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'ST'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Sao Tome and Principe'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'SA'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Saudi Arabia'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'SN'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Senegal'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'YU'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Serbia and Montenegro'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'SC'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Seychelles'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'SL'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Sierra Leone'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'SG'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Singapore'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'SK'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Slovakia'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'SI'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Slovenia'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'SB'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Solomon Islands'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'SO'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Somalia'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'ZA'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'South Africa'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'ES'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Spain'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'LK'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Sri Lanka'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'SH'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'St. Helena'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'KN'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'St. Kitts and Nevis'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'PM'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'St. Pierre and Miquelon'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'VC'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'St. Vincent and the Grenadines'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'SD'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Sudan'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'SR'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Suriname'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'SJ'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Svalbard and Jan Mayen Islands'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'SZ'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Swaziland'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'SE'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Sweden'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'CH'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Switzerland'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'SY'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Syrian Arab Republic'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'TW'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Taiwan'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'TJ'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Tajikistan'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'TZ'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Tanzania, United Republic of'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'TH'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Thailand'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'TG'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Togo'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'TK'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Tokelau'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'TO'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Tonga'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'TT'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Trinidad and Tobago'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'TN'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Tunisia'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'TR'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Turkey'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'TM'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Turkmenistan'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'TC'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Turks and Caicos Islands'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'TV'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Tuvalu'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'UG'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Uganda'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'UA'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Ukraine'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'AE'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'United Arab Emirates'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'GB'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'United Kingdom (Great Britain)'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'US'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'United States'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'VI'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'United States Virgin Islands'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'UY'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Uruguay'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'UZ'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Uzbekistan'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'VU'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Vanuatu'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'VA'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Vatican City State'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'VE'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Venezuela'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'VN'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Vietnam'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'WF'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Wallis And Futuna Islands'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'EH'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Western Sahara'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'YE'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Yemen'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'ZR'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Zaire'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'ZM'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Zambia'</span><span style="color: #339933;">,</span>
	<span style="color: #0000ff;">'ZW'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'Zimbabwe'</span>
<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<h3>&lt;select&gt; Example</h3>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">&lt;form method=&quot;post&quot; action=&quot;&quot;&gt;
	&lt;select name=&quot;country&quot;&gt;
		&lt;option&gt;&lt;/option&gt;
		<span style="color: #000000; font-weight: bold;">&lt;?php</span>
		<span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$options</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$key</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$val</span><span style="color: #009900;">&#41;</span>
		<span style="color: #009900;">&#123;</span>
			<span style="color: #000000; font-weight: bold;">?&gt;</span>
			&lt;option value=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$key</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$_POST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'country'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">==</span> <span style="color: #000088;">$key</span><span style="color: #009900;">&#41;</span> ? <span style="color: #0000ff;">'selected=&quot;&quot;'</span> <span style="color: #339933;">:</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$val</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/option&gt;
			<span style="color: #000000; font-weight: bold;">&lt;?php</span>
		<span style="color: #009900;">&#125;</span>
		<span style="color: #000000; font-weight: bold;">?&gt;</span>
	&lt;/select&gt;
&lt;/form&gt;</pre></td></tr></table></div>

<h3>Demo/Download</h3>
<p><a href="http://jivstudio.com/wp-content/uploads/2010/01/php-country-array.zip">Download</a><br />
<a href="/demos/php-country-array/php-country-array.php" target="_blank">Demo PHP Country Array</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/N7GJOMY-XJkoFlVrxfFjCXMEuq0/0/da"><img src="http://feedads.g.doubleclick.net/~a/N7GJOMY-XJkoFlVrxfFjCXMEuq0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/N7GJOMY-XJkoFlVrxfFjCXMEuq0/1/da"><img src="http://feedads.g.doubleclick.net/~a/N7GJOMY-XJkoFlVrxfFjCXMEuq0/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/jivstudio/~4/8itRJB-l0rk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jivstudio.com/2010/01/24/php-country-array/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jivstudio.com/2010/01/24/php-country-array/</feedburner:origLink></item>
		<item>
		<title>jQuery AJAX News Ticker</title>
		<link>http://feedproxy.google.com/~r/jivstudio/~3/LJWvrtKDKPQ/</link>
		<comments>http://jivstudio.com/2010/01/15/jquery-ajax-news-ticker/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 23:43:40 +0000</pubDate>
		<dc:creator>Jason Maletsky</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">/?p=806</guid>
		<description><![CDATA[There are several jQuery News Tickers available but I needed one that I could control the output from PHP and add a slight blank delay between news items. This demo does not have the delay between items but you can add sleep() to ticker.php if needed. This script could be modified to create the data source (ticker.php) via MySQL or RSS feeds.]]></description>
			<content:encoded><![CDATA[<p>There are several jQuery News Tickers available but I needed one that I could control the output from PHP and add a slight blank delay between news items. This demo does not have the delay between items but you can add sleep() to ticker.php if needed. This script could be modified to create the data source (ticker.php) via MySQL or RSS feeds.</p>
<p>This script calls ticker.php for the first item to set in the ticker &lt;div&gt; and also set the total count for the javascript to loop through then calls the appropriate indexed item from the $json array in ticker.php.</p>
<p>For the impatient:<br />
<a href="/demos/jquery-ajax-news-ticker/" target="_blank">Demo of the jQuery AJAX News Ticker</a></p>
<h3>PHP: ticker.php</h3>
<pre><code class="php">if ($_GET['r'] == 1)
{
    // Removing browser caching
    header( "Expires: Mon, 20 Dec 1998 01:00:00 GMT" );
    header( "Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT" );
    header( "Cache-Control: no-cache, must-revalidate" );
    header( "Pragma: no-cache" );
}

$json = array();

$json[] = array(
	'url' =&gt; '#1',
	'text' =&gt; 'First Item Text'
);

$json[] = array(
	'url' =&gt; '#2',
	'text' =&gt; 'Second Item Text'
);

$json[] = array(
	'url' =&gt; '#3',
	'text' =&gt; 'Third Item Text'
);

$json[] = array(
	'url' =&gt; '#4',
	'text' =&gt; 'Fourth Item Text'
);

if ($_GET['r'] == 1)
{
    echo json_encode(array($json[((int)$_GET['i'] - 1)]));
}</code></pre>
<h3>jQuery</h3>
<pre><code class="javascript">&lt;?php
// Call the ticker.php script to grab the first item and total items
require('ticker.php');
?&gt;

var total = &lt;?php echo count($json); ?&gt;;
var current = 1;

$(document).ready(function(){
	setInterval("get_ticker()", 3000); // Change this to your specified need time, in milliseconds
});

function get_ticker()
{
	// Increment the counter
	if (current != total)
	{
		current  ;
	}
	else
	{
		current = 1;
	}

	// Get the data
	$.ajax({
		type: "GET",
		dataType: "json",
		cache: false,
		url: "ticker.php?i="   current   "&amp;r=1",
		timeout: 2000,
		error: function() {
			alert("Failed to submit");
		},
		success: function(data) {
			$.each(data, function(i, j){
				$("#ticker-link").attr("href", j.url);
				$("#ticker-link").text(j.text);
			});
		}
	});
}</code></pre>
<h3>HTML</h3>
<pre><code class="html">&lt;div id="ticker"&gt;
	&lt;!-- Display the first item --&gt;
	&lt;a href="&lt;?php echo $json[0]['url']; ?&gt;" id="ticker-link"&gt;&lt;?php echo $json[0]['text']; ?&gt;&lt;/a&gt;
&lt;/div&gt;</code></pre>
<h3>Demo/Download</h3>
<p><a href="http://jivstudio.com/wp-content/uploads/2010/01/jquery-ajax-news-ticker.zip">Download</a><br />
<a href="/demos/jquery-ajax-news-ticker/" target="_blank">Demo of the jQuery AJAX News Ticker</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/VlJYQS1BPzMR7BXiTGuoHeVkIB0/0/da"><img src="http://feedads.g.doubleclick.net/~a/VlJYQS1BPzMR7BXiTGuoHeVkIB0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/VlJYQS1BPzMR7BXiTGuoHeVkIB0/1/da"><img src="http://feedads.g.doubleclick.net/~a/VlJYQS1BPzMR7BXiTGuoHeVkIB0/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/jivstudio/~4/LJWvrtKDKPQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jivstudio.com/2010/01/15/jquery-ajax-news-ticker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jivstudio.com/2010/01/15/jquery-ajax-news-ticker/</feedburner:origLink></item>
	</channel>
</rss><!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk (enhanced)
Database Caching using disk
Object Caching 547/655 objects using disk

Served from: jivstudio.com @ 2012-01-16 18:33:47 -->

