Hi all, i have been reading some related information about Apache web server but i have not found anything... Well, i would like to show in my web page the process time that Apache needs to serve this page. Does anybody know how can i do that? Thanks in advance, regards, Juan Luis
This is more of a PHP thing than an Apache thing but the simplest way is to add something like this at the top of your script: $start_time = microtime(TRUE); PHP: and this near the bottom: $end_time = microtime(TRUE); $total_time = $end_time - $start_time; echo ("This page generated in ".round($total_time, 2)." seconds."); PHP: