<?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>Complete Web 2.0 &#187; time &#124; Complete Web 2.0</title>
	<atom:link href="http://itzurkarthi.com/tag/time/feed/" rel="self" type="application/rss+xml" />
	<link>http://itzurkarthi.com</link>
	<description>by karthikeyan K</description>
	<lastBuildDate>Mon, 17 Jun 2013 04:36:04 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Load Time in PHP</title>
		<link>http://itzurkarthi.com/2010/11/20/load-time-in-php/</link>
		<comments>http://itzurkarthi.com/2010/11/20/load-time-in-php/#comments</comments>
		<pubDate>Sat, 20 Nov 2010 15:53:09 +0000</pubDate>
		<dc:creator>Karthikeyan K</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[time]]></category>

		<guid isPermaLink="false">http://itzurkarthi.wordpress.com/?p=9</guid>
		<description><![CDATA[This one is a must for developers and system admins. You need to know how long your site takes to load. Nobody sticks around waiting for a site to load anymore – there’s way too much content out there for that. Use this script to find out if your site &#8230;<div class='yarpp-related-rss'>
<h3>You might also like:</h3><ol>
<li><a href='http://itzurkarthi.com/2011/12/19/php-and-htaccess-tips-and-tricks/' rel='bookmark' title='PHP and htaccess tips and tricks'>PHP and htaccess tips and tricks</a></li>
<li><a href='http://itzurkarthi.com/2012/01/30/top-5-tips-to-speed-up-your-wordpress-blog/' rel='bookmark' title='Top 5 tips to speed up your wordpress blog'>Top 5 tips to speed up your wordpress blog</a></li>
<li><a href='http://itzurkarthi.com/2010/11/21/create-a-basic-shoutbox-with-php-and-sql/' rel='bookmark' title='Create a Basic Shoutbox with PHP and SQL'>Create a Basic Shoutbox with PHP and SQL</a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>This one is a must for developers and system admins. You need to know  how long your site takes to load. Nobody sticks around waiting for a  site to load anymore – there’s way too much content out there for that.  Use this script to find out if your site is taking too long, and if it  is, fix it.</p>
<p>Insert this code snippet inside the &lt;head&gt; and &lt;/head&gt; tags of your document:<br />
<code><br />
$starttime = microtime();<br />
$startarray = explode(" ", $starttime);<br />
$starttime = $startarray[1] + $startarray[0];</code></p>
<p>Insert this code snippet directly before the closing &lt;/body&gt; tag of your document:</p>
<p><code><br />
$endtime = microtime();<br />
$endarray = explode(" ", $endtime);<br />
$endtime = $endarray[1] + $endarray[0];<br />
$totaltime = $endtime - $starttime;<br />
$totaltime = round($totaltime,10);<br />
echo "Seconds To Load: ";<br />
printf ("%fn", $totaltime);</code></p>
<p>do it  and have fun <img src='http://itzurkarthi.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class='yarpp-related-rss'>
<h3>You might also like:</h3><ol>
<li><a href='http://itzurkarthi.com/2011/12/19/php-and-htaccess-tips-and-tricks/' rel='bookmark' title='PHP and htaccess tips and tricks'>PHP and htaccess tips and tricks</a></li>
<li><a href='http://itzurkarthi.com/2012/01/30/top-5-tips-to-speed-up-your-wordpress-blog/' rel='bookmark' title='Top 5 tips to speed up your wordpress blog'>Top 5 tips to speed up your wordpress blog</a></li>
<li><a href='http://itzurkarthi.com/2010/11/21/create-a-basic-shoutbox-with-php-and-sql/' rel='bookmark' title='Create a Basic Shoutbox with PHP and SQL'>Create a Basic Shoutbox with PHP and SQL</a></li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://itzurkarthi.com/2010/11/20/load-time-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
