This code is used to find the execution time of a script
<?php
$time_start = microtime(true);
// Place your PHP/HTML/JavaScript/CSS/Etc. Here
$time_end = microtime(true);
$time = $time_end - $time_start;
echo 'Script took '.$time.' seconds to exicute';
?>