With this script you can display how much this Time this page has taken to load.
<?php
// Insert at the start of your document
$time = round(microtime(), 3);
// Insert at the end of your document
$time2 = round(microtime(), 3);
$generation = $time2 – $time;
echo “This page took $generation seconds to render”;
?>