<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Code The World — Page load time]]></title>
		<link>https://codetheworld.com/viewtopic.php?id=9</link>
		<atom:link href="https://codetheworld.com/extern.php?action=feed&amp;tid=9&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Page load time.]]></description>
		<lastBuildDate>Sun, 15 Jun 2008 01:07:54 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Page load time]]></title>
			<link>https://codetheworld.com/viewtopic.php?pid=9#p9</link>
			<description><![CDATA[<p>Description<br />Outputs the time in seconds that it takes for a PHP page to load.</p><p>The code<br /></p><div class="codebox"><pre><code>&lt;?php

// Insert this block of code at the very top of your page:

$time = microtime();
$time = explode(&quot; &quot;, $time);
$time = $time[1] + $time[0];
$start = $time;

// Place this part at the very end of your page

$time = microtime();
$time = explode(&quot; &quot;, $time);
$time = $time[1] + $time[0];
$finish = $time;
$totaltime = ($finish - $start);
printf (&quot;This page took %f seconds to load.&quot;, $totaltime);

?&gt;</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Casper)]]></author>
			<pubDate>Sun, 15 Jun 2008 01:07:54 +0000</pubDate>
			<guid>https://codetheworld.com/viewtopic.php?pid=9#p9</guid>
		</item>
	</channel>
</rss>
