Have an account? Sign in
Login  Register  Facebook
This Page is Under Construction! - If You Want To Help Please Send your CV - Advanced Web Core (BETA)
[Edit] Get the generation page time

Use :

//you should add this in the start of the page
gen_time();

# your source code here

echo 'Generated in '.gentime().' seconds.';
Save 9,441 time
function gen_time() {
    static $time;
        if($time== 0){
            $time= microtime(true);
        }else{
            return (string)(microtime(true)-$time);
        }
}