<?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; How-To</title>
	<atom:link href="http://www.absolutelytech.com/tag/how-to/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>Solution to &#8220;MySQL Server Has Gone Away&#8221; Problem</title>
		<link>http://www.absolutelytech.com/2009/07/19/solution-to-mysql-server-has-gone-away-problem/</link>
		<comments>http://www.absolutelytech.com/2009/07/19/solution-to-mysql-server-has-gone-away-problem/#comments</comments>
		<pubDate>Sun, 19 Jul 2009 10:25:42 +0000</pubDate>
		<dc:creator>Deepak Mittal</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tips and tricks]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[Debugging]]></category>
		<category><![CDATA[Errors]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[MySQL server]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://www.absolutelytech.com/2009/07/19/solution-to-mysql-server-has-gone-away-problem/</guid>
		<description><![CDATA[Seriously guys, I got this error and I was laughing hard. The error is just too funny, don’t you think? Yes, it is but not for developers like me. Problem to this error is almost undetectable and there are more than a dozen reasons as to why this occurs and this often baffles developers. This [...]


Related posts:<ol><li><a href='http://www.absolutelytech.com/2009/08/20/get-auto-increment-value-from-mysql-table/' rel='bookmark' title='Get Auto Increment value from MySQL table'>Get Auto Increment value from MySQL table</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/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>
</ol>]]></description>
		<wfw:commentRss>http://www.absolutelytech.com/2009/07/19/solution-to-mysql-server-has-gone-away-problem/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>[HowTo] Convert HTML to PDF using PHP</title>
		<link>http://www.absolutelytech.com/2009/07/10/make-a-pdf-file-in-php-convert-html-to-pdf-using-php/</link>
		<comments>http://www.absolutelytech.com/2009/07/10/make-a-pdf-file-in-php-convert-html-to-pdf-using-php/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 04:59:59 +0000</pubDate>
		<dc:creator>Deepak Mittal</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tips and tricks]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[PDF Library]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.techmindz.com/blogs/?p=82</guid>
		<description><![CDATA[In a recent project, I had to output to a PDF file as well as to the browser. For this purpose first I downloaded the library from here. Then this code: &#38;lt;?php &#160; ob_start&#40;&#41;;  //Start buffering the output &#160; //your coding starts here &#160; .... &#160; .... &#160; ... &#160; ... &#160; //Coding ends here [...]


Related posts:<ol><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>
<li><a href='http://www.absolutelytech.com/2010/01/31/solved-flush-ob_flush-not-working-in-php-disabling-gzip-through-htaccess/' rel='bookmark' title='[SOLVED] Flush(), ob_flush() not working in PHP (Disabling gzip through htaccess)'>[SOLVED] Flush(), ob_flush() not working in PHP (Disabling gzip through htaccess)</a></li>
</ol>]]></description>
		<wfw:commentRss>http://www.absolutelytech.com/2009/07/10/make-a-pdf-file-in-php-convert-html-to-pdf-using-php/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>[HowTo] A trick to get access to protected sites.</title>
		<link>http://www.absolutelytech.com/2009/06/13/a-trick-to-get-access-to-protected-forums/</link>
		<comments>http://www.absolutelytech.com/2009/06/13/a-trick-to-get-access-to-protected-forums/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 05:41:14 +0000</pubDate>
		<dc:creator>Deepak Mittal</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tips and tricks]]></category>
		<category><![CDATA[accessing protected sites]]></category>
		<category><![CDATA[googlebot]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[user agent]]></category>

		<guid isPermaLink="false">http://www.techmindz.com/blogs/?p=71</guid>
		<description><![CDATA[Sometimes, when you search in google for something, you find very nice results but when you visit those sites, they seem to be protected i.e; you need to either sign-up or maybe you need to pay for it. So, here&#8217;s a way to get access to it without paying or even signing up. Mostly people [...]


Related posts:<ol><li><a href='http://www.absolutelytech.com/2010/03/27/how-to-changing-facebook-theme/' rel='bookmark' title='[How-To] Change facebook theme'>[How-To] Change facebook theme</a></li>
<li><a href='http://www.absolutelytech.com/2009/10/04/mozilla-firefox-memory-optimization/' rel='bookmark' title='[HowTo] Optimize Mozilla Firefox for better performance'>[HowTo] Optimize Mozilla Firefox for better performance</a></li>
<li><a href='http://www.absolutelytech.com/2010/11/04/undo-recent-facebook-style-changes/' rel='bookmark' title='Undo recent facebook style changes'>Undo recent facebook style changes</a></li>
</ol>]]></description>
		<wfw:commentRss>http://www.absolutelytech.com/2009/06/13/a-trick-to-get-access-to-protected-forums/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>[HowTo] Remove almost any kind of viruses from Windows</title>
		<link>http://www.absolutelytech.com/2009/06/10/virus-removal/</link>
		<comments>http://www.absolutelytech.com/2009/06/10/virus-removal/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 15:58:05 +0000</pubDate>
		<dc:creator>Deepak Mittal</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Tips and tricks]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[virus]]></category>
		<category><![CDATA[Virus Removal]]></category>

		<guid isPermaLink="false">http://www.techmindz.com/blogs/?p=63</guid>
		<description><![CDATA[Being attacked by many viruses in the recent times, I thought why not make people learn from my experience. Having faced about a dozen of different viruses in past 2 weeks, I have experience enough to write this guide. I faced trojans, trojan downloaders, rootkits and what not. So here&#8217;s my little guide which will [...]


Related posts:<ol><li><a href='http://www.absolutelytech.com/2009/05/26/fight-with-the-viruse-it-was-terrible/' rel='bookmark' title='[Solved] Windows XP login logoff loop caused by a virus'>[Solved] Windows XP login logoff loop caused by a virus</a></li>
<li><a href='http://www.absolutelytech.com/2009/08/19/re-detection-of-dma-mode-in-windows-xp/' rel='bookmark' title='Re-detection of DMA mode in windows xp'>Re-detection of DMA mode in windows xp</a></li>
<li><a href='http://www.absolutelytech.com/2009/06/07/efs/' rel='bookmark' title='Why not to encrypt your files using EFS or any other encryption'>Why not to encrypt your files using EFS or any other encryption</a></li>
</ol>]]></description>
		<wfw:commentRss>http://www.absolutelytech.com/2009/06/10/virus-removal/feed/</wfw:commentRss>
		<slash:comments>10</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 14/51 queries in 0.065 seconds using apc
Object Caching 1827/1844 objects using apc

Served from: www.absolutelytech.com @ 2012-02-08 08:05:47 -->
