<?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>Jedidiah's Blog &#187; PHP</title>
	<atom:link href="http://jedidiahreeser.com/blog/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://jedidiahreeser.com/blog</link>
	<description>Technology Information Exchange</description>
	<lastBuildDate>Wed, 22 Jul 2009 02:24:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Format Phone Numbers with PHP</title>
		<link>http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/</link>
		<comments>http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 02:15:25 +0000</pubDate>
		<dc:creator>Jedidiah</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[area code]]></category>
		<category><![CDATA[country code]]></category>
		<category><![CDATA[eleven digit number]]></category>
		<category><![CDATA[format]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[jedidiah]]></category>
		<category><![CDATA[long distance call]]></category>
		<category><![CDATA[number]]></category>
		<category><![CDATA[parse]]></category>
		<category><![CDATA[phone]]></category>
		<category><![CDATA[prefix]]></category>
		<category><![CDATA[sscanf]]></category>
		<category><![CDATA[ten digit number]]></category>

		<guid isPermaLink="false">http://jedidiahreeser.com/blog/?p=41</guid>
		<description><![CDATA[Using PHP, this little bit of code parses and formats numbers by putting parentheses and a hyphen into the phone number. This code handles 10 digit phone numbers and even eleven digits (with the country code).
]]></description>
			<content:encoded><![CDATA[<p>Using PHP, this little bit of code parses and formats numbers by putting parentheses and a hyphen into the phone number. This code handles 10 digit phone numbers and even eleven digits (with the country code).</p>
<p><span style="color: #008000;"><strong>Example: </strong> <strong>Changes this</strong> 1234567890  <strong>into this</strong> (123) 456-7890</span></p>
<pre class="brush: php;">
function formatphone($phone){
if (empty($phone)) return "";

if (strlen($phone) == 7) {
    sscanf($phone, "%3s%4s", $prefix, $exchange);
} else if (strlen($phone) == 10) {
    sscanf($phone, "%3s%3s%4s", $area, $prefix, $exchange);
} else if (strlen($phone) > 10) {
    if(substr($phone,0,1)=='1') {
        sscanf($phone, "%1s%3s%3s%4s", $country, $area, $prefix, $exchange);
    } else {
        sscanf($phone, "%3s%3s%4s%s", $area, $prefix, $exchange, $extension);
    }
} else {
    return $phone;
}

$out = "";
$out .= isset($country) ? $country.' ' : '';
$out .= isset($area) ? '(' . $area . ') ' : '';
$out .= $prefix . '-' . $exchange;
$out .= isset($extension) ? ' x' . $extension : '';
return $out;
}
</pre>
<div class="ii gt">I would like to thank Justin Cook for posting his code on <a href="http://justin-cook.com">justin-cook.com</a>. By changing a few lines of Justin&#8217;s code, I was able to get it to work for me. To view the original code or to see Justin&#8217;s blog, visit:<a href="http://www.justin-cook.com/wp/2006/11/17/parse-and-format-phone-numbers-with-php/"> http://www.justin-cook.com/wp/2006/11/17/parse-and-format-phone-numbers-with-php/</a>. Justin describes his blog as &#8220;A web, technology, programming and SEO blog by Justin Cook.&#8221; Nice work, Justin!</div>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="jedidiahreeser@gmail.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Coffee for Format Phone Numbers with PHP" /><input type="hidden" name="currency_code" value="USD" /><input type="hidden" name="amount" value="" /><input type="image" src="http://jedidiahreeser.com/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=jedidiahreeser@gmail.com&amp;currency_code=USD&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Coffee+for+Format+Phone+Numbers+with+PHP" target="paypal">Buy Me a Coffee</a></p><div class="sexy-bookmarks"><ul class="socials"><li class="sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;title=Format+Phone+Numbers+with+PHP" rel="external nofollow" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li><li class="sexy-blinklist"><a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;Title=Format+Phone+Numbers+with+PHP" rel="external nofollow" title="Share this on Blinklist">Share this on Blinklist</a></li><li class="sexy-delicious"><a href="http://del.icio.us/post?url=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;title=Format+Phone+Numbers+with+PHP" rel="external nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;title=Format+Phone+Numbers+with+PHP" rel="external nofollow" title="Digg this!">Digg this!</a></li><li class="sexy-diigo"><a href="http://www.diigo.com/post?url=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;title=Format+Phone+Numbers+with+PHP&amp;desc=Using%20PHP%2C%20this%20little%20bit%20of%20code%20parses%20and%20formats%20numbers%20by%20putting%20parentheses%20and%20a%20hyphen%20into%20the%20phone%20number.%20This%20code%20handles%2010%20digit%20phone%20numbers%20and%20even%20eleven%20digits%20%28with%20the%20country%20code%29.%0D%0A%0D%0AExample%3A%20%20Changes%20this%201234567890%C2%A0%20into%20this%20%28123%29%20456-7890%0D%0A%5Bsourcecode%20language%3D%27php" rel="external nofollow" title="Post this on Diigo">Post this on Diigo</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;title=Format+Phone+Numbers+with+PHP" rel="external nofollow" title="Share this on Reddit">Share this on Reddit</a></li><li class="sexy-yahoobuzz"><a href="http://buzz.yahoo.com/submit/?submitUrl=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;submitHeadline=Format+Phone+Numbers+with+PHP&amp;submitSummary=Using%20PHP%2C%20this%20little%20bit%20of%20code%20parses%20and%20formats%20numbers%20by%20putting%20parentheses%20and%20a%20hyphen%20into%20the%20phone%20number.%20This%20code%20handles%2010%20digit%20phone%20numbers%20and%20even%20eleven%20digits%20%28with%20the%20country%20code%29.%0D%0A%0D%0AExample%3A%20%20Changes%20this%201234567890%C2%A0%20into%20this%20%28123%29%20456-7890%0D%0A%5Bsourcecode%20language%3D%27php&amp;submitCategory=science&amp;submitAssetType=text" rel="external nofollow" title="Buzz up!">Buzz up!</a></li><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;title=Format+Phone+Numbers+with+PHP" rel="external nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/" rel="external nofollow" title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-mixx"><a href="http://www.mixx.com/submit?page_url=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;title=Format+Phone+Numbers+with+PHP" rel="external nofollow" title="Share this on Mixx">Share this on Mixx</a></li><li class="sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;t=Format+Phone+Numbers+with+PHP" rel="external nofollow" title="Post this to MySpace">Post this to MySpace</a></li><li class="sexy-designfloat"><a href="http://www.designfloat.com/submit.php?url=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;title=Format+Phone+Numbers+with+PHP" rel="external nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;t=Format+Phone+Numbers+with+PHP" rel="external nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@jedidiahr:+Format+Phone+Numbers+with+PHP+-+http://tinyurl.com/mhcqko" rel="external nofollow" title="Tweet This!">Tweet This!</a></li><li class="sexy-mail"><a href="mailto:?&amp;subject=Format%20Phone%20Numbers%20with%20PHP&amp;body=Using%20PHP%2C%20this%20little%20bit%20of%20code%20parses%20and%20formats%20numbers%20by%20putting%20parentheses%20and%20a%20hyphen%20into%20the%20phone%20number.%20This%20code%20handles%2010%20digit%20phone%20numbers%20and%20even%20eleven%20digits%20%28with%20the%20country%20code%29.%0D%0A%0D%0AExample%3A%20%20Changes%20this%201234567890%C2%A0%20into%20this%20%28123%29%20456-7890%0D%0A%5Bsourcecode%20language%3D%27php - http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/" rel="external nofollow" title="Email this to a friend?">Email this to a friend?</a></li><li class="sexy-comfeed"><a href="http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/feed" rel="external nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;title=Format+Phone+Numbers+with+PHP&amp;summary=Using%20PHP%2C%20this%20little%20bit%20of%20code%20parses%20and%20formats%20numbers%20by%20putting%20parentheses%20and%20a%20hyphen%20into%20the%20phone%20number.%20This%20code%20handles%2010%20digit%20phone%20numbers%20and%20even%20eleven%20digits%20%28with%20the%20country%20code%29.%0D%0A%0D%0AExample%3A%20%20Changes%20this%201234567890%C2%A0%20into%20this%20%28123%29%20456-7890%0D%0A%5Bsourcecode%20language%3D%27php&amp;source=Jedidiah's Blog" rel="external nofollow" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;h=Format+Phone+Numbers+with+PHP" rel="external nofollow" title="Seed this on Newsvine">Seed this on Newsvine</a></li><li class="sexy-devmarks"><a href="http://devmarks.com/index.php?posttext=Using%20PHP%2C%20this%20little%20bit%20of%20code%20parses%20and%20formats%20numbers%20by%20putting%20parentheses%20and%20a%20hyphen%20into%20the%20phone%20number.%20This%20code%20handles%2010%20digit%20phone%20numbers%20and%20even%20eleven%20digits%20%28with%20the%20country%20code%29.%0D%0A%0D%0AExample%3A%20%20Changes%20this%201234567890%C2%A0%20into%20this%20%28123%29%20456-7890%0D%0A%5Bsourcecode%20language%3D%27php&amp;posturl=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;posttitle=Format+Phone+Numbers+with+PHP" rel="external nofollow" title="Share this on Devmarks">Share this on Devmarks</a></li><li class="sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/title=Format+Phone+Numbers+with+PHP" rel="external nofollow" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a></li><li class="sexy-misterwong"><a href="http://www.mister-wong.com/addurl/?bm_url=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;bm_description=Format+Phone+Numbers+with+PHP&amp;plugin=sexybookmarks" rel="external nofollow" title="Add this to Mister Wong">Add this to Mister Wong</a></li><li class="sexy-izeby"><a href="http://izeby.com/add_story.php?story_url=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/" rel="external nofollow" title="Add this to Izeby">Add this to Izeby</a></li><li class="sexy-tumblr"><a href="http://www.tumblr.com/share?v=3&amp;u=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;t=Format+Phone+Numbers+with+PHP&amp;s=" rel="external nofollow" title="Share this on Tumblr">Share this on Tumblr</a></li><li class="sexy-tipd"><a href="http://tipd.com/submit.php?url=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/" rel="external nofollow" title="Share this on Tipd">Share this on Tipd</a></li><li class="sexy-pfbuzz"><a href="http://pfbuzz.com/submit?url=http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/&amp;title=Format+Phone+Numbers+with+PHP" rel="external nofollow" title="Share this on PFBuzz">Share this on PFBuzz</a></li></ul><div style="clear:both;"></div></div>]]></content:encoded>
			<wfw:commentRss>http://jedidiahreeser.com/blog/2009/03/format-phone-numbers-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP is for the PowerHungryProgrammer</title>
		<link>http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/</link>
		<comments>http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 21:13:32 +0000</pubDate>
		<dc:creator>Jedidiah</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[opensource]]></category>

		<guid isPermaLink="false">http://jedidiahreeser.com/blog/?p=24</guid>
		<description><![CDATA[PHP is a great code that I frequently suggest to other programmer friends to use on various types of projects. However, some programmers still shy away from this versatile and powerful code.  For those of you who are unfamiliar with PHP or are not sure if it should be considered for you next project, [...]]]></description>
			<content:encoded><![CDATA[<p>PHP is a great code that I frequently suggest to other programmer friends to use on various types of projects. However, some programmers still shy away from this versatile and powerful code.  For those of you who are unfamiliar with PHP or are not sure if it should be considered for you next project, consider this:</p>
<ul>
<li>PHP is compatible with Unix, Linux, and Windows.</li>
<li>PHP allows you to organize the code the way you want (start imagining how this could be a good thing)</li>
<li>PHP has a strong community and has many pre-built open source applications that are waiting for you to intergrate into your project (saving you millions of years sitting in front of your computer)</li>
<li>Connects easily to a variety of databases</li>
<li>Its OpenSource, so you got freedom!</li>
<li>PHP is great for start-ups and side projects because of low-cost, though this should be appealing to everyone.</li>
<li>PHP code is hidden from web surfers (only html is visible)</li>
<li>PHP can create .pdf&#8217;s and excel files on the fly</li>
<li>PHP was used to program other awesome and powerful projects (facebook.com, youtube.com, wikipedia.com*)</li>
</ul>
<p><em>In conclusion, the correct time to consider using PHP is when you are hungry to create powerful websites!</em></p>
<div style="font-size: 90%;"></div>
<div style="font-size: 90%;">Check out more great reasons to use PHP at Krystian Hoffman&#8217;s blog:</div>
<div style="font-size: 90%;"><a href="http://krillz.com/10-reasons-why-i-use-php/">http://krillz.com/10-reasons-why-i-use-php/</a> *reference David Hurst&#8217;s blog: <a href="http://www.davidhurst.co.uk/2009/02/25/famous-websites-that-use-php-andor-mysql/">http://www.davidhurst.co.uk/2009/02/25/famous-websites-that-use-php-andor-mysql/</a></div>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="jedidiahreeser@gmail.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Buy Me a Coffee for PHP is for the PowerHungryProgrammer" /><input type="hidden" name="currency_code" value="USD" /><input type="hidden" name="amount" value="" /><input type="image" src="http://jedidiahreeser.com/blog/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=jedidiahreeser@gmail.com&amp;currency_code=USD&amp;amount=&amp;return=&amp;item_name=Buy+Me+a+Coffee+for+PHP+is+for+the+PowerHungryProgrammer" target="paypal">Buy Me a Coffee</a></p><div class="sexy-bookmarks"><ul class="socials"><li class="sexy-scriptstyle"><a href="http://scriptandstyle.com/submit?url=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;title=PHP+is+for+the+PowerHungryProgrammer" rel="external nofollow" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li><li class="sexy-blinklist"><a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;Title=PHP+is+for+the+PowerHungryProgrammer" rel="external nofollow" title="Share this on Blinklist">Share this on Blinklist</a></li><li class="sexy-delicious"><a href="http://del.icio.us/post?url=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;title=PHP+is+for+the+PowerHungryProgrammer" rel="external nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;title=PHP+is+for+the+PowerHungryProgrammer" rel="external nofollow" title="Digg this!">Digg this!</a></li><li class="sexy-diigo"><a href="http://www.diigo.com/post?url=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;title=PHP+is+for+the+PowerHungryProgrammer&amp;desc=PHP%20is%20a%20great%20code%20that%20I%20frequently%20suggest%20to%20other%20programmer%20friends%20to%20use%20on%20various%20types%20of%20projects.%20However%2C%20some%20programmers%20still%20shy%20away%20from%20this%20versatile%20and%20powerful%20code.%20%20For%20those%20of%20you%20who%20are%20unfamiliar%20with%20PHP%20or%20are%20not%20sure%20if%20it%20should%20be%20considered%20for%20you%20next%20project" rel="external nofollow" title="Post this on Diigo">Post this on Diigo</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;title=PHP+is+for+the+PowerHungryProgrammer" rel="external nofollow" title="Share this on Reddit">Share this on Reddit</a></li><li class="sexy-yahoobuzz"><a href="http://buzz.yahoo.com/submit/?submitUrl=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;submitHeadline=PHP+is+for+the+PowerHungryProgrammer&amp;submitSummary=PHP%20is%20a%20great%20code%20that%20I%20frequently%20suggest%20to%20other%20programmer%20friends%20to%20use%20on%20various%20types%20of%20projects.%20However%2C%20some%20programmers%20still%20shy%20away%20from%20this%20versatile%20and%20powerful%20code.%20%20For%20those%20of%20you%20who%20are%20unfamiliar%20with%20PHP%20or%20are%20not%20sure%20if%20it%20should%20be%20considered%20for%20you%20next%20project&amp;submitCategory=science&amp;submitAssetType=text" rel="external nofollow" title="Buzz up!">Buzz up!</a></li><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;title=PHP+is+for+the+PowerHungryProgrammer" rel="external nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/" rel="external nofollow" title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-mixx"><a href="http://www.mixx.com/submit?page_url=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;title=PHP+is+for+the+PowerHungryProgrammer" rel="external nofollow" title="Share this on Mixx">Share this on Mixx</a></li><li class="sexy-myspace"><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;t=PHP+is+for+the+PowerHungryProgrammer" rel="external nofollow" title="Post this to MySpace">Post this to MySpace</a></li><li class="sexy-designfloat"><a href="http://www.designfloat.com/submit.php?url=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;title=PHP+is+for+the+PowerHungryProgrammer" rel="external nofollow" title="Submit this to DesignFloat">Submit this to DesignFloat</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;t=PHP+is+for+the+PowerHungryProgrammer" rel="external nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@jedidiahr:+PHP+is+for+the+PowerHungryProgrammer+-+http://tinyurl.com/l95cbv" rel="external nofollow" title="Tweet This!">Tweet This!</a></li><li class="sexy-mail"><a href="mailto:?&amp;subject=PHP%20is%20for%20the%20PowerHungryProgrammer&amp;body=PHP%20is%20a%20great%20code%20that%20I%20frequently%20suggest%20to%20other%20programmer%20friends%20to%20use%20on%20various%20types%20of%20projects.%20However%2C%20some%20programmers%20still%20shy%20away%20from%20this%20versatile%20and%20powerful%20code.%20%20For%20those%20of%20you%20who%20are%20unfamiliar%20with%20PHP%20or%20are%20not%20sure%20if%20it%20should%20be%20considered%20for%20you%20next%20project - http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/" rel="external nofollow" title="Email this to a friend?">Email this to a friend?</a></li><li class="sexy-comfeed"><a href="http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/feed" rel="external nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-linkedin"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;title=PHP+is+for+the+PowerHungryProgrammer&amp;summary=PHP%20is%20a%20great%20code%20that%20I%20frequently%20suggest%20to%20other%20programmer%20friends%20to%20use%20on%20various%20types%20of%20projects.%20However%2C%20some%20programmers%20still%20shy%20away%20from%20this%20versatile%20and%20powerful%20code.%20%20For%20those%20of%20you%20who%20are%20unfamiliar%20with%20PHP%20or%20are%20not%20sure%20if%20it%20should%20be%20considered%20for%20you%20next%20project&amp;source=Jedidiah's Blog" rel="external nofollow" title="Share this on Linkedin">Share this on Linkedin</a></li><li class="sexy-newsvine"><a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;h=PHP+is+for+the+PowerHungryProgrammer" rel="external nofollow" title="Seed this on Newsvine">Seed this on Newsvine</a></li><li class="sexy-devmarks"><a href="http://devmarks.com/index.php?posttext=PHP%20is%20a%20great%20code%20that%20I%20frequently%20suggest%20to%20other%20programmer%20friends%20to%20use%20on%20various%20types%20of%20projects.%20However%2C%20some%20programmers%20still%20shy%20away%20from%20this%20versatile%20and%20powerful%20code.%20%20For%20those%20of%20you%20who%20are%20unfamiliar%20with%20PHP%20or%20are%20not%20sure%20if%20it%20should%20be%20considered%20for%20you%20next%20project&amp;posturl=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;posttitle=PHP+is+for+the+PowerHungryProgrammer" rel="external nofollow" title="Share this on Devmarks">Share this on Devmarks</a></li><li class="sexy-google"><a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/title=PHP+is+for+the+PowerHungryProgrammer" rel="external nofollow" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a></li><li class="sexy-misterwong"><a href="http://www.mister-wong.com/addurl/?bm_url=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;bm_description=PHP+is+for+the+PowerHungryProgrammer&amp;plugin=sexybookmarks" rel="external nofollow" title="Add this to Mister Wong">Add this to Mister Wong</a></li><li class="sexy-izeby"><a href="http://izeby.com/add_story.php?story_url=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/" rel="external nofollow" title="Add this to Izeby">Add this to Izeby</a></li><li class="sexy-tumblr"><a href="http://www.tumblr.com/share?v=3&amp;u=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;t=PHP+is+for+the+PowerHungryProgrammer&amp;s=" rel="external nofollow" title="Share this on Tumblr">Share this on Tumblr</a></li><li class="sexy-tipd"><a href="http://tipd.com/submit.php?url=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/" rel="external nofollow" title="Share this on Tipd">Share this on Tipd</a></li><li class="sexy-pfbuzz"><a href="http://pfbuzz.com/submit?url=http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/&amp;title=PHP+is+for+the+PowerHungryProgrammer" rel="external nofollow" title="Share this on PFBuzz">Share this on PFBuzz</a></li></ul><div style="clear:both;"></div></div>]]></content:encoded>
			<wfw:commentRss>http://jedidiahreeser.com/blog/2009/03/php-is-for-the-powerhungryprogrammer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
