Hello folks, do someone knows tool or Firefox plugin , which can show me how fast is the script i am running. I mean , to show me the seconds needed from the server to execute it? Thank you.
If you just want it for one script, you can display it by putting this at the start of the script: <?php $startTime = microtime(TRUE); ?> PHP: then at the end: <?php echo microtime(TRUE) - $startTime; ?> PHP: Or take a look at PEAR's benchmarking.