Site Cloner PHP Script
Bargain Hunter PHP Script
Job Hunter PHP Script
Site Login and Access Control PHP Script

PHP Microtime Benchmark

Use microtime() to calculate how long it takes to run code:

$timer_start = microtime(true);

// write all code here
$function1= myfunction();
$class = newClass;

$timer_end = microtime(true);
$elapsed_time = $timer_end – $timer_start;

echo “This ran for $elapsed_time seconds”;
mysql_close();