<?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>Absolutely Tech &#187; php</title>
	<atom:link href="http://www.absolutelytech.com/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.absolutelytech.com</link>
	<description>Yes!! Its absolutely tech...</description>
	<lastBuildDate>Wed, 28 Sep 2011 10:31:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>[SOLVED] &#8216;Error at offset&#8217; error in unserialize()</title>
		<link>http://www.absolutelytech.com/2010/12/20/solved-error-at-offset-error-in-unserialize/</link>
		<comments>http://www.absolutelytech.com/2010/12/20/solved-error-at-offset-error-in-unserialize/#comments</comments>
		<pubDate>Sun, 19 Dec 2010 19:32:30 +0000</pubDate>
		<dc:creator>Deepak Mittal</dc:creator>
				<category><![CDATA[Web development]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[unserialize]]></category>

		<guid isPermaLink="false">http://www.absolutelytech.com/?p=974</guid>
		<description><![CDATA[I came across this weird error in unserialize() where it refused to unserialize the serialized data. After hours of trying different things to solve it, finally converting the encoding worked. The solution to the problem is to use the following function instead of unserialize(): function safe_unserialize&#40;$str&#41;&#123; return unserialize&#40; trim&#40; mb_convert_encoding&#40; $str,'auto','UTF-8' &#41; &#41; &#41;; &#125; [...]


Related posts:<ol><li><a href='http://www.absolutelytech.com/2010/06/19/solvederror-establishing-a-database-connection-in-wordpress/' rel='bookmark' title='[SOLVED]&#8216;Error establishing a database connection&#8217; in wordpress'>[SOLVED]&#8216;Error establishing a database connection&#8217; in wordpress</a></li>
<li><a href='http://www.absolutelytech.com/2010/06/30/solved-error-dpkg-error-processing-filename-unpack-trying-to-overwrite/' rel='bookmark' title='[SOLVED] Error &#8216;dpkg: error processing &lt;filename&gt; (&#045;&#045;unpack) trying to overwrite&#8230;'>[SOLVED] Error &#8216;dpkg: error processing &lt;filename&gt; (&#45;&#45;unpack) trying to overwrite&#8230;</a></li>
<li><a href='http://www.absolutelytech.com/2010/12/06/solved-error-undefined-reference-to-libiconv_open-while-compiling/' rel='bookmark' title='[SOLVED] Error &#8220;undefined reference to `libiconv_open&#8217;&#8221; while compiling'>[SOLVED] Error &#8220;undefined reference to `libiconv_open&#8217;&#8221; while compiling</a></li>
</ol>]]></description>
		<wfw:commentRss>http://www.absolutelytech.com/2010/12/20/solved-error-at-offset-error-in-unserialize/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[HOWTO] Fix Twitter clients (or PHP scripts) which use basic authentication.</title>
		<link>http://www.absolutelytech.com/2010/09/07/howto-fix-twitter-clients-or-php-scripts-which-use-basic-authentication/</link>
		<comments>http://www.absolutelytech.com/2010/09/07/howto-fix-twitter-clients-or-php-scripts-which-use-basic-authentication/#comments</comments>
		<pubDate>Tue, 07 Sep 2010 16:16:04 +0000</pubDate>
		<dc:creator>Deepak Mittal</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[basic-authentication]]></category>
		<category><![CDATA[oauth]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[supertweet]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[twitter clients]]></category>

		<guid isPermaLink="false">http://www.absolutelytech.com/?p=881</guid>
		<description><![CDATA[As you probably know, Twitter completely ditched basic authentication method on August 31st, 2010. It now supports only OAuth method of authentication which complicates the coding process multiple folds. Scripts which were previously 20 lines long now span several files. While there are numerous advantage of Oauth like client doesn&#8217;t need to know your password, [...]


Related posts:<ol><li><a href='http://www.absolutelytech.com/2010/06/06/how-to-find-windows-live-hotmail-contacts-on-twitter/' rel='bookmark' title='[How-To] Find windows live (hotmail) contacts on twitter'>[How-To] Find windows live (hotmail) contacts on twitter</a></li>
<li><a href='http://www.absolutelytech.com/2010/08/01/howto-check-your-php-and-server-information-using-phpinfo/' rel='bookmark' title='[HowTo] Check your php and server information using phpinfo()'>[HowTo] Check your php and server information using phpinfo()</a></li>
</ol>]]></description>
		<wfw:commentRss>http://www.absolutelytech.com/2010/09/07/howto-fix-twitter-clients-or-php-scripts-which-use-basic-authentication/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>[HowTo] Check your php and server information using phpinfo()</title>
		<link>http://www.absolutelytech.com/2010/08/01/howto-check-your-php-and-server-information-using-phpinfo/</link>
		<comments>http://www.absolutelytech.com/2010/08/01/howto-check-your-php-and-server-information-using-phpinfo/#comments</comments>
		<pubDate>Sun, 01 Aug 2010 07:53:22 +0000</pubDate>
		<dc:creator>Deepak Mittal</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[config]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[phpinfo]]></category>

		<guid isPermaLink="false">http://www.absolutelytech.com/?p=832</guid>
		<description><![CDATA[We can check the php configuration, apache&#8217;s loaded modules and all other kinds of PHP configuration using a simple function called phpinfo(). Create a file called infophp.php in your web&#8217;s root directory and put the following code in it: &#60;? phpinfo&#40;&#41;; ?&#62; This would output all the php configuration info and apache information. You can [...]


Related posts:<ol><li><a href='http://www.absolutelytech.com/2010/06/19/solved-cant-connect-to-local-mysql-server-through-socket-error/' rel='bookmark' title='[SOLVED] &#8216;Can&#8217;t connect to local MySQL server through socket&#8217; error'>[SOLVED] &#8216;Can&#8217;t connect to local MySQL server through socket&#8217; error</a></li>
<li><a href='http://www.absolutelytech.com/2009/10/04/installing-a-web-server-package-for-php-development/' rel='bookmark' title='Installing a web server package for PHP development'>Installing a web server package for PHP development</a></li>
<li><a href='http://www.absolutelytech.com/2010/08/02/howto-enable-or-disable-modules-in-apache/' rel='bookmark' title='[HowTo] Enable or disable modules in Apache'>[HowTo] Enable or disable modules in Apache</a></li>
</ol>]]></description>
		<wfw:commentRss>http://www.absolutelytech.com/2010/08/01/howto-check-your-php-and-server-information-using-phpinfo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[HOWTO] Send emails(using mail function) from localhost in PHP through msmtp (using gmail account) on Linux</title>
		<link>http://www.absolutelytech.com/2010/07/18/howto-send-emailsusing-mail-function-from-localhost-in-php-through-msmtp-using-gmail-account-on-linux/</link>
		<comments>http://www.absolutelytech.com/2010/07/18/howto-send-emailsusing-mail-function-from-localhost-in-php-through-msmtp-using-gmail-account-on-linux/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 07:08:27 +0000</pubDate>
		<dc:creator>Deepak Mittal</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Ubuntu (Linux)]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[localhost]]></category>
		<category><![CDATA[mail()]]></category>
		<category><![CDATA[msmtp]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.absolutelytech.com/?p=665</guid>
		<description><![CDATA[There&#8217;ve been lots of times when I wanted to use the mail() function on my local server. I am sure lots of you would&#8217;ve been wanting it too but most of you would&#8217;ve settled for PHPMailer or just used a web host to test the code instead. I myself had been doing the same until [...]


Related posts:<ol><li><a href='http://www.absolutelytech.com/2010/07/17/howto-configure-msmtp-to-work-with-gmail-on-linux/' rel='bookmark' title='[HowTo] Configure msmtp to work with gmail on linux'>[HowTo] Configure msmtp to work with gmail on linux</a></li>
<li><a href='http://www.absolutelytech.com/2010/07/20/howto-use-mutt-with-msmtp/' rel='bookmark' title='[HowTo] Use mutt with msmtp'>[HowTo] Use mutt with msmtp</a></li>
<li><a href='http://www.absolutelytech.com/2010/09/11/howto-delete-all-unstarred-emails-from-inbox-or-label-in-gmail/' rel='bookmark' title='[HOWTO] Delete all unstarred emails from Inbox or Label in GMail'>[HOWTO] Delete all unstarred emails from Inbox or Label in GMail</a></li>
</ol>]]></description>
		<wfw:commentRss>http://www.absolutelytech.com/2010/07/18/howto-send-emailsusing-mail-function-from-localhost-in-php-through-msmtp-using-gmail-account-on-linux/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>[HOWTO] Validate Email-address in PHP using Regular expressions (the correct way)</title>
		<link>http://www.absolutelytech.com/2010/07/15/howto-validate-email-address-in-php-using-regular-expressions-the-correct-way/</link>
		<comments>http://www.absolutelytech.com/2010/07/15/howto-validate-email-address-in-php-using-regular-expressions-the-correct-way/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 06:40:09 +0000</pubDate>
		<dc:creator>Deepak Mittal</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[email validation]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[preg_match]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[regular expression]]></category>

		<guid isPermaLink="false">http://www.absolutelytech.com/?p=671</guid>
		<description><![CDATA[Here&#8217;s a function which thoroughly checks email-address and returns true for a valid email address and returns false for invalid one. I thought it was worth sharing so I posted it on my blog. You will find the source link at the bottom. 1 2 3 4 5 6 7 8 9 10 11 12 [...]


Related posts:<ol><li><a href='http://www.absolutelytech.com/2009/12/14/using-codeigniters-email-library-separately/' rel='bookmark' title='Using CodeIgniter&#8217;s Email library separately'>Using CodeIgniter&#8217;s Email library separately</a></li>
<li><a href='http://www.absolutelytech.com/2009/05/31/permanently-moved-to-my-new-web-address/' rel='bookmark' title='Permanently moved to my new web address'>Permanently moved to my new web address</a></li>
<li><a href='http://www.absolutelytech.com/2009/05/31/gmail-inbox-full-now-what-ive-a-solution/' rel='bookmark' title='[HowTo] Forward all gmail mails to new address when you&#8217;ve run out of space'>[HowTo] Forward all gmail mails to new address when you&#8217;ve run out of space</a></li>
</ol>]]></description>
		<wfw:commentRss>http://www.absolutelytech.com/2010/07/15/howto-validate-email-address-in-php-using-regular-expressions-the-correct-way/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>[SOLVED]&#8216;Error establishing a database connection&#8217; in wordpress</title>
		<link>http://www.absolutelytech.com/2010/06/19/solvederror-establishing-a-database-connection-in-wordpress/</link>
		<comments>http://www.absolutelytech.com/2010/06/19/solvederror-establishing-a-database-connection-in-wordpress/#comments</comments>
		<pubDate>Sat, 19 Jun 2010 01:44:45 +0000</pubDate>
		<dc:creator>Deepak Mittal</dc:creator>
				<category><![CDATA[Web development]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.absolutelytech.com/?p=413</guid>
		<description><![CDATA[One of my clients got this error in his wordpress: Error establishing a database connection It is one of those vague errors which give very little information about what caused it. On going to /wp-admin, it gave error: One or more database tables are unavailable. The database may need to be repaired. I added &#8220;define(&#8216;WP_ALLOW_REPAIR&#8217;, [...]


Related posts:<ol><li><a href='http://www.absolutelytech.com/2010/02/13/solved-error-saving-media-attachment-error-in-wordpress/' rel='bookmark' title='[Solved] &#8220;Error saving media attachment.&#8221; error in WordPress'>[Solved] &#8220;Error saving media attachment.&#8221; error in WordPress</a></li>
<li><a href='http://www.absolutelytech.com/2010/06/19/solved-cant-connect-to-local-mysql-server-through-socket-error/' rel='bookmark' title='[SOLVED] &#8216;Can&#8217;t connect to local MySQL server through socket&#8217; error'>[SOLVED] &#8216;Can&#8217;t connect to local MySQL server through socket&#8217; error</a></li>
<li><a href='http://www.absolutelytech.com/2010/12/20/solved-error-at-offset-error-in-unserialize/' rel='bookmark' title='[SOLVED] &#8216;Error at offset&#8217; error in unserialize()'>[SOLVED] &#8216;Error at offset&#8217; error in unserialize()</a></li>
</ol>]]></description>
		<wfw:commentRss>http://www.absolutelytech.com/2010/06/19/solvederror-establishing-a-database-connection-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Passing variable number of arguments to a function in PHP</title>
		<link>http://www.absolutelytech.com/2010/04/14/passing-variable-number-of-arguments-in-php/</link>
		<comments>http://www.absolutelytech.com/2010/04/14/passing-variable-number-of-arguments-in-php/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 02:57:43 +0000</pubDate>
		<dc:creator>Deepak Mittal</dc:creator>
				<category><![CDATA[Tips and tricks]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[functions]]></category>
		<category><![CDATA[func_get_arg]]></category>
		<category><![CDATA[func_num_args]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.absolutelytech.com/?p=369</guid>
		<description><![CDATA[We all know about functions and how we can pass arguments to it. But did you know that we can pass variable number of arguments in a function? Consider a function sum() which adds numbers passed into its arguments. Now we want it to add all the numbers passed onto the arguments. Eg; if we [...]


Related posts:<ol><li><a href='http://www.absolutelytech.com/2010/07/18/howto-send-emailsusing-mail-function-from-localhost-in-php-through-msmtp-using-gmail-account-on-linux/' rel='bookmark' title='[HOWTO] Send emails(using mail function) from localhost in PHP through msmtp (using gmail account) on Linux'>[HOWTO] Send emails(using mail function) from localhost in PHP through msmtp (using gmail account) on Linux</a></li>
<li><a href='http://www.absolutelytech.com/2009/07/19/solution-to-mysql-server-has-gone-away-problem/' rel='bookmark' title='Solution to &ldquo;MySQL Server Has Gone Away&rdquo; Problem'>Solution to &ldquo;MySQL Server Has Gone Away&rdquo; Problem</a></li>
<li><a href='http://www.absolutelytech.com/2010/08/01/howto-check-your-php-and-server-information-using-phpinfo/' rel='bookmark' title='[HowTo] Check your php and server information using phpinfo()'>[HowTo] Check your php and server information using phpinfo()</a></li>
</ol>]]></description>
		<wfw:commentRss>http://www.absolutelytech.com/2010/04/14/passing-variable-number-of-arguments-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[SOLVED] Flush(), ob_flush() not working in PHP (Disabling gzip through htaccess)</title>
		<link>http://www.absolutelytech.com/2010/01/31/solved-flush-ob_flush-not-working-in-php-disabling-gzip-through-htaccess/</link>
		<comments>http://www.absolutelytech.com/2010/01/31/solved-flush-ob_flush-not-working-in-php-disabling-gzip-through-htaccess/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 03:39:53 +0000</pubDate>
		<dc:creator>Deepak Mittal</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[disable gzip]]></category>
		<category><![CDATA[flush]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[mod_gzip]]></category>
		<category><![CDATA[ob_flush]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.absolutelytech.com/?p=302</guid>
		<description><![CDATA[Flushing the output buffer doesn&#8217;t works in PHP sometimes no matter what you do. I had this code which would never work on my server but would perfectly fine on localhost. This was the code. &#60;?php include('common.php'); ini_set('output_buffering','on'); ini_set('zlib.output_compression', 0); //ini_set('implicit_flush',1); ob_implicit_flush(); for($i=0;$i Related posts:[HowTo] Convert HTML to PDF using PHP [Solved] Unable to enumerate [...]


Related posts:<ol><li><a href='http://www.absolutelytech.com/2009/07/10/make-a-pdf-file-in-php-convert-html-to-pdf-using-php/' rel='bookmark' title='[HowTo] Convert HTML to PDF using PHP'>[HowTo] Convert HTML to PDF using PHP</a></li>
<li><a href='http://www.absolutelytech.com/2010/04/18/solved-unable-to-enumerate-usb-device-disabling-ehci_hcd/' rel='bookmark' title='[Solved] Unable to enumerate USB device (Disabling ehci_hcd)'>[Solved] Unable to enumerate USB device (Disabling ehci_hcd)</a></li>
<li><a href='http://www.absolutelytech.com/2011/03/26/howto-extend-login-expiration-for-phpmyadmin/' rel='bookmark' title='[HowTo] Extend phpmyadmin session expiration time'>[HowTo] Extend phpmyadmin session expiration time</a></li>
</ol>]]></description>
		<wfw:commentRss>http://www.absolutelytech.com/2010/01/31/solved-flush-ob_flush-not-working-in-php-disabling-gzip-through-htaccess/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Missing alphabet check (is_alpha) in PHP</title>
		<link>http://www.absolutelytech.com/2010/01/28/missing-alphabet-check-in-php/</link>
		<comments>http://www.absolutelytech.com/2010/01/28/missing-alphabet-check-in-php/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 10:16:39 +0000</pubDate>
		<dc:creator>Deepak Mittal</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[is_alpha]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.absolutelytech.com/2010/01/28/missing-alphabet-check-in-php/</guid>
		<description><![CDATA[Well, you might have seen a huge number of variable checks ranging from is_file(), is_array() to is_numeric() and is_int(). While developing a script today I wanted to check for alphabets. I directly used is_alpha() but to my surprise it wasn&#8217;t defined. I researched more into the matter and found ctype_alpha() does precisely the same thing. [...]


Related posts:<ol><li><a href='http://www.absolutelytech.com/2010/08/01/howto-check-your-php-and-server-information-using-phpinfo/' rel='bookmark' title='[HowTo] Check your php and server information using phpinfo()'>[HowTo] Check your php and server information using phpinfo()</a></li>
<li><a href='http://www.absolutelytech.com/2009/12/14/using-codeigniters-email-library-separately/' rel='bookmark' title='Using CodeIgniter&#8217;s Email library separately'>Using CodeIgniter&#8217;s Email library separately</a></li>
</ol>]]></description>
		<wfw:commentRss>http://www.absolutelytech.com/2010/01/28/missing-alphabet-check-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using CodeIgniter&#8217;s Email library separately</title>
		<link>http://www.absolutelytech.com/2009/12/14/using-codeigniters-email-library-separately/</link>
		<comments>http://www.absolutelytech.com/2009/12/14/using-codeigniters-email-library-separately/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 04:30:09 +0000</pubDate>
		<dc:creator>Deepak Mittal</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[smtp]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.absolutelytech.com/?p=255</guid>
		<description><![CDATA[I&#8217;ve developed my own libraries for rapid development of PHP applications. Email library is one area which I didn&#8217;t feel like developing a library for. Just then, I remembered how simple and robust CodeIgniter&#8217;s Email class was. I decided to try it on my own script. It was not at all difficult to get it [...]


Related posts:<ol><li><a href='http://www.absolutelytech.com/2010/07/15/howto-validate-email-address-in-php-using-regular-expressions-the-correct-way/' rel='bookmark' title='[HOWTO] Validate Email-address in PHP using Regular expressions (the correct way)'>[HOWTO] Validate Email-address in PHP using Regular expressions (the correct way)</a></li>
<li><a href='http://www.absolutelytech.com/2010/07/17/howto-configure-msmtp-to-work-with-gmail-on-linux/' rel='bookmark' title='[HowTo] Configure msmtp to work with gmail on linux'>[HowTo] Configure msmtp to work with gmail on linux</a></li>
<li><a href='http://www.absolutelytech.com/2010/07/18/howto-send-emailsusing-mail-function-from-localhost-in-php-through-msmtp-using-gmail-account-on-linux/' rel='bookmark' title='[HOWTO] Send emails(using mail function) from localhost in PHP through msmtp (using gmail account) on Linux'>[HOWTO] Send emails(using mail function) from localhost in PHP through msmtp (using gmail account) on Linux</a></li>
</ol>]]></description>
		<wfw:commentRss>http://www.absolutelytech.com/2009/12/14/using-codeigniters-email-library-separately/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc (Feed is rejected)
Page Caching using apc
Database Caching 28/133 queries in 0.538 seconds using apc
Object Caching 4042/4144 objects using apc

Served from: www.absolutelytech.com @ 2012-02-05 23:47:21 -->
