$i = 0 wouldn't work, because it would try dividing by 1, and obviously that's going to be divisible, it's part of the definition of a prime number.
And to do the loading time, you call microtime() at the beginning of the page and at the end of the page, then subtract the first from the second, and turn it into seconds. It's more complicated than that, though, because microtime returns an array, methinks. Here's what the PHP manual says:
\n
<?PHP\n
function getmicrotime(){
list($usec, $sec) = explode(" ",microtime());
return ((float)$usec + (float)$sec);
}
$time_start = getmicrotime();
for ($i=0; $i < 1000; $i++){
//do nothing, 1000 times
}
$time_end = getmicrotime();
$time = $time_end - $time_start;
echo "Did nothing in $time seconds";
\n?>
\n
And for the queries, we have a function for a mysql query, and whenever it's called it increments the variable $querycount by 1.
Your Comments: