<?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>Reich Consulting &#187; PHP</title>
	<atom:link href="http://www.reich-consulting.net/category/developement/php-developement/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.reich-consulting.net</link>
	<description>Tech Support, Networking, and Programming Services in Mifflinburg, PA</description>
	<lastBuildDate>Tue, 17 Jan 2012 19:05:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Subnet Calculator in 9 Lines of PHP</title>
		<link>http://www.reich-consulting.net/2011/12/08/subnet-calculator-in-9-lines-of-php/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=subnet-calculator-in-9-lines-of-php</link>
		<comments>http://www.reich-consulting.net/2011/12/08/subnet-calculator-in-9-lines-of-php/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 16:39:05 +0000</pubDate>
		<dc:creator>Brian Reich</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[cidr]]></category>
		<category><![CDATA[dotted decimal]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[subnet]]></category>
		<category><![CDATA[subnet calculator]]></category>
		<category><![CDATA[subnetting]]></category>

		<guid isPermaLink="false">http://www.reich-consulting.net/?p=688</guid>
		<description><![CDATA[I&#8217;ve been spending a lot of time studying for my Microsoft 70-642 exam, an important part of which is subnetting.As an intellectual exercise I wrote a subnet calculator. Enjoy: 1 2 3 4 5 6 7 8 9 function subnet&#40;$hosts&#41; &#123; $bits = decbin&#40;$hosts&#41; + 2; // Add 2 for Network ID and Broadcast $hostBits = strlen&#40;$bits&#41;; // find how many bits it takes to represent it $cidr = 32 - $hostBits; // Find slash-notation [...]]]></description>
		<wfw:commentRss>http://www.reich-consulting.net/2011/12/08/subnet-calculator-in-9-lines-of-php/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Use a Frame-Busting Redirect To Authorize Facebook Applications</title>
		<link>http://www.reich-consulting.net/2011/01/21/use-a-frame-busting-redirect-to-authorize-facebook-applications/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=use-a-frame-busting-redirect-to-authorize-facebook-applications</link>
		<comments>http://www.reich-consulting.net/2011/01/21/use-a-frame-busting-redirect-to-authorize-facebook-applications/#comments</comments>
		<pubDate>Fri, 21 Jan 2011 20:54:40 +0000</pubDate>
		<dc:creator>Brian Reich</dc:creator>
				<category><![CDATA[Developement]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[canvas]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[iframe]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[solution]]></category>

		<guid isPermaLink="false">http://www.reich-consulting.net/?p=492</guid>
		<description><![CDATA[While developing a new Facebook application I stumbled upon a very common app development bug:  redirecting users to authorize your app from within an Iframe-based Facebook application.  This post explains how to easily solve the problem]]></description>
		<wfw:commentRss>http://www.reich-consulting.net/2011/01/21/use-a-frame-busting-redirect-to-authorize-facebook-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making the PHP Curl Extension Work on Windows</title>
		<link>http://www.reich-consulting.net/2011/01/13/making-the-php-curl-extension-work-on-windows/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=making-the-php-curl-extension-work-on-windows</link>
		<comments>http://www.reich-consulting.net/2011/01/13/making-the-php-curl-extension-work-on-windows/#comments</comments>
		<pubDate>Thu, 13 Jan 2011 22:58:35 +0000</pubDate>
		<dc:creator>Brian Reich</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[CURL]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php_curl.dll]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.reich-consulting.net/?p=485</guid>
		<description><![CDATA[Earlier tonight I was setting up some development tools on my new laptop and ran across a problem that I had never seen before.  When I began testing an application that uses the Facebook API (which depends on the CURL library), PHP insisted that the CURL extension was not loaded.  I checked and double-checked that my php.ini file was correct (it was) and that the rest of my extensions were loading (they were). Finally after [...]]]></description>
		<wfw:commentRss>http://www.reich-consulting.net/2011/01/13/making-the-php-curl-extension-work-on-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing Keys from an Array in PHP</title>
		<link>http://www.reich-consulting.net/2010/12/15/removing-keys-from-an-array-in-php/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=removing-keys-from-an-array-in-php</link>
		<comments>http://www.reich-consulting.net/2010/12/15/removing-keys-from-an-array-in-php/#comments</comments>
		<pubDate>Wed, 15 Dec 2010 19:03:52 +0000</pubDate>
		<dc:creator>Brian Reich</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Site News]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[array_delete_keys]]></category>
		<category><![CDATA[array_remove_keys]]></category>
		<category><![CDATA[keys]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[removal]]></category>

		<guid isPermaLink="false">http://www.reich-consulting.net/?p=479</guid>
		<description><![CDATA[Every wish PHP had a function like array_remove_keys() to delete one or more keys and their values from an array?  This post shows you how to construct one using just a couple of lines of code.]]></description>
		<wfw:commentRss>http://www.reich-consulting.net/2010/12/15/removing-keys-from-an-array-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>6 Reasons I Chose A2Hosting</title>
		<link>http://www.reich-consulting.net/2010/02/02/6-reasons-to-choose-a2hosting/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=6-reasons-to-choose-a2hosting</link>
		<comments>http://www.reich-consulting.net/2010/02/02/6-reasons-to-choose-a2hosting/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 01:07:01 +0000</pubDate>
		<dc:creator>Brian Reich</dc:creator>
				<category><![CDATA[Developement]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Product Reviews]]></category>
		<category><![CDATA[a2hosting]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[lamp]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[reseller]]></category>
		<category><![CDATA[shared]]></category>

		<guid isPermaLink="false">http://www.reich-consulting.net/?p=265</guid>
		<description><![CDATA[This post describes six actual experiences that I've had with A2Hosting and other hosting companies which has made me a loyal customer of their Reseller hosting packages.]]></description>
		<wfw:commentRss>http://www.reich-consulting.net/2010/02/02/6-reasons-to-choose-a2hosting/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Zend_Http_Client_Adapter_Socket Problems</title>
		<link>http://www.reich-consulting.net/2009/12/22/zend_http_client_adapter_socket-problems/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=zend_http_client_adapter_socket-problems</link>
		<comments>http://www.reich-consulting.net/2009/12/22/zend_http_client_adapter_socket-problems/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 01:12:34 +0000</pubDate>
		<dc:creator>Brian Reich</dc:creator>
				<category><![CDATA[Developement]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[adapter]]></category>
		<category><![CDATA[client]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">http://www.reich-consulting.net/?p=255</guid>
		<description><![CDATA[While running my unit tests for an application I&#8217;m developing, I noticed that certain web service components were intermittently failing.  The failure was caused by irregularly formed XML responses from Amazon&#8217;s Web Services. The failures occured as Exceptions from within the Zend_Service_Amazon component, but upon further inspection I was able to discover that the HTTP Adapter being used from within Zend_Service_Amazon, which is by default Zend_Http_Client_Adapter_Socket, was not returning the entire stream from Amazon.  After [...]]]></description>
		<wfw:commentRss>http://www.reich-consulting.net/2009/12/22/zend_http_client_adapter_socket-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP On Windows 7</title>
		<link>http://www.reich-consulting.net/2009/05/28/php-on-windows-7/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=php-on-windows-7</link>
		<comments>http://www.reich-consulting.net/2009/05/28/php-on-windows-7/#comments</comments>
		<pubDate>Thu, 28 May 2009 19:08:43 +0000</pubDate>
		<dc:creator>Brian Reich</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php.ini]]></category>
		<category><![CDATA[virtual store]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://www.reich-consulting.net/?p=145</guid>
		<description><![CDATA[This post explains why your changes to php.ini don't take effect on Windows 7, and how you can fix the problem.]]></description>
		<wfw:commentRss>http://www.reich-consulting.net/2009/05/28/php-on-windows-7/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 1/35 queries in 0.014 seconds using disk: basic
Object Caching 918/1024 objects using disk: basic

Served from: www.reich-consulting.net @ 2012-02-12 10:46:41 -->
